我使用代码下载如下..
ob_start();
ini_set('memory_limit','1200M');
set_time_limit(900);
// required for IE, otherwise Content-disposition is ignored
if(ini_get('zlib.output_compression'))
ini_set('zlib.output_compression', 'Off');
apache_setenv('no-gzip', '1');
$filename = "test.zip";
$filepath = "http://demo.com/";
// http headers for zip downloads
header('Content-Description: File Transfer');
header('Content-Transfer-Encoding: binary');
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"".$filename."\"");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($filepath.$filename));
//set_time_limit(0);
ob_clean();
flush();
readfile($filepath.$filename);
exit;
我的文件大小是100MB的zip文件。仅下载45MB到50MB。我不知道问题出在哪里。请帮帮我......
答案 0 :(得分:1)
ob_clean
会丢弃输出缓冲区的当前内容,但不会禁用它。因此,readfile
的输出缓存在内存中,受php memory_limit
指令的限制。
相反,使用ob_end_clean
来丢弃和禁用输出缓冲区,或者根本不使用输出缓冲。
答案 1 :(得分:0)
这可能无法解决您的所有问题,但我看到以下内容:
ob_start();
和ob_clean();
命令。请注意后者will not destroy the output buffer。//set_time_limit(0);
以免遇到时间限制问题。