当从mysql请求多个记录时,ob_start file_put_contents超时

时间:2016-07-27 05:57:37

标签: php ob-start file-put-contents

这是我的代码

<?php
ini_set("default_socket_timeout", 60);
include("include/dbcommon.php");
ob_start();
include("inspections_print.php");
$page_content = ob_get_contents();
ob_end_clean();
file_put_contents('files/bobby3.html',$page_content);

?>

inspections_print.php从mysql数据库请求记录并构建报告。它工作并创建bobby3.html文件,如果它只请求1条记录,如果我请求10条记录,它会创建一个空的bobby3.html文件。这是我完全控制的Linode服务器上的。它设置为使用内存1024M = 300和max_execution_time = 300

default_socket_timeout

0 个答案:

没有答案