使用php下载大型Zip文件

时间:2011-07-18 13:58:37

标签: php download zip

我使用代码下载如下..

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。我不知道问题出在哪里。请帮帮我......

2 个答案:

答案 0 :(得分:1)

ob_clean会丢弃输出缓冲区的当前内容,但不会禁用它。因此,readfile的输出缓存在内存中,受php memory_limit指令的限制。

相反,使用ob_end_clean来丢弃和禁用输出缓冲区,或者根本不使用输出缓冲。

答案 1 :(得分:0)

这可能无法解决您的所有问题,但我看到以下内容:

  1. 输出缓冲。您不希望输出缓冲。删除ob_start();ob_clean();命令。请注意后者will not destroy the output buffer
  2. 取消注释//set_time_limit(0);以免遇到时间限制问题。
  3. enable error logging并从错误日志中学习脚本停止发送文件的原因。