我正在为一个将一起压缩文件并允许用户下载的网站的PHP页面工作。 zip的文件大小可以从几MB到100MB不等。我的PHP脚本在临时目录中创建zip文件,然后将文件内容写入浏览器。完成后,脚本将更新MySQL数据库中的下载计数器,并从临时目录中删除zip文件。
这一切都正常,直到我遇到超过30秒的大型zip下载。 php.ini文件中的max_execution_time
设置为30,这是有道理的,但如果我尝试使用set_time_limit(0)
或更改max_execution_time
,则会出现相同的结果。 zip文件从浏览器中成功下载并包含所有正确的文件,但之后脚本似乎停止,因为数据库没有更新,服务器上的临时zip文件也没有删除。
这是一个使用Apache和PHP 5.2的Linux环境。
这个网站托管在GoDaddy上,所以我不确定他们是否有限制更改脚本可以执行的时间限制,但基本上我想让这个特定的脚本无限期地运行直到它完成。
对于为什么我无法设置时间限制或任何变通方法的任何想法?
这是我的代码:
<?php
// Don't stop the script if the user
// closes the browser
ignore_user_abort(true);
set_time_limit(0);
// Generate random name for ZIP file
$zip_file = "";
$characters = "0123456789abcdefghijklmnopqrstuvwxyz";
do
{
$zip_file = "tmp/";
for ($p = 0; $p < 10; $p++)
$zip_file .= $characters[mt_rand(0, strlen($characters))];
$zip_file .= ".zip";
} while (file_exists($zip_file));
// Prepare ZIP file
$zip = new ZipArchive();
/* Open and add files to ZIP (this part works fine)
.
.
.
*/
// Close and save ZIP
$zip->close();
// Check browser connection
if (connection_status() == 0)
{
// Send ZIP
header("Content-Type: application/zip");
header("Content-Length: " . filesize($zip_file));
header("Content-Disposition: attachment; filename=Download.zip");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
// Save and then delete file
//readfile($zip_file);
if ($file = fopen($zip_file, "r"))
{
// Set buffer size
$buffer_size = 1024 * 8;
// While we're still transmitting
// send over bytes!
while(!feof($file) && (connection_status() == 0))
{
print(fread($file, $buffer_size));
flush();
usleep(10000); //<!-- Download speed cap
}
// Close file descriptor
fclose($file);
}
}
/* Update database download counter if connection_status() == 0
.
.
.
*/
// Delete the file
unlink($zip_file);
?>
更新:我刚刚尝试从我的本地网络服务器进行另一次下载,并将usleep
命令提升至10000以减慢下载时间。总下载时间花了1分多钟,数据库更新,文件从/ tmp中删除。我的本地环境在Windows 7机器上运行带有Apache和PHP 5.3的EasyPHP。看起来这可能与GoDaddy有关。
此外,在GoDaddy和本地网站上,我从我的脚本调用max_execution_time
之前和之后打印出set_time_limit
,结果分别为30和0,所以我不确定发生了什么在GoDaddy方面。
答案 0 :(得分:0)
答案 1 :(得分:0)
仍然不确定为什么我上面使用的代码无法在托管网站上运行,但我找到了解决方法。如果我在实际站点上使用PHP中的register_shutdown_function
调用,则数据库会正确更新并删除该文件。
这是关机功能代码:
<?php
$filesize = 0;
$total_bytes_read = 0;
$download_query = "";
$zip_file = "tmp/download.zip";
register_shutdown_function("shutdown");
/* Other code for creating ZIP file and reading it out to the browser
.
.
.
*/
function shutdown()
{
global $filesize;
global $total_bytes_read;
global $zip_file;
global $download_query;
// Update the database if file was fully downloaded
if ($filesize != 0 && $filesize == $total_bytes_read)
{
/* Do database update with $download_query
.
.
.
*/
}
// Delete the file
unlink($zip_file);
}
?>
答案 2 :(得分:0)
您应该能够在php5.ini中设置max_execution_time并使用PHP信息页面进行检查。你能提供php5.ini的部分和PHPinfo页面的输出吗?