我尝试在php中呈现一个zip文件。 代码:
header('Content-Type: application/zip');
header('Content-Length: ' . filesize($file));
header('Content-Disposition: attachment; filename="file.zip"');
下载的文件只有几个字节。这是一条错误消息:
<br />
<b>Fatal error</b>: Allowed memory size of 16777216 bytes exhausted (tried to allocate 41908867 bytes) in <b>/var/www/common_index/main.php</b> on line <b>217</b><br />
我不希望在php.ini中增加memory_limit。有什么方法可以正确呈现大型zip文件而不需要修改全局设置?
答案 0 :(得分:4)
流下载,因此它不会阻塞内存。 微小的例子:
$handle = fopen("exampe.zip", "rb");
while (!feof($handle)) {
echo fread($handle, 1024);
flush();
}
fclose($handle);
添加正确的输出标题以供下载,您应该解决问题。
答案 1 :(得分:0)
PHP实际上提供了一种简单的方法,可以直接将二进制文件输出到Apache,而无需先通过readfile()
函数将其存储在内存中:
header('Content-Type: application/zip');
header('Content-Length: ' . filesize($file));
header('Content-Disposition: attachment; filename="file.zip"');
readfile('file.zip');