php 渲染大型 zip 文件 - 达到内存限制
我尝试在 php 中渲染 zip 文件。 代码:
header('Content-Type: application/zip');
header('Content-Length: ' . filesize($file));
header('Content-Disposition: attachment; filename="file.zip"');
下载的文件只有几个字节。这是一条错误消息:
行上
> 致命错误:/var/www/common_index/main.php中允许的内存大小 16777216 字节已耗尽(尝试分配 41908867 字节)在 217
gt;
我不希望增加 php.ini 中的 memory_limit。有哪些替代方法可以在不修改全局设置的情况下正确渲染大型 zip 文件?
I try to render a zip file in php.
Code:
header('Content-Type: application/zip');
header('Content-Length: ' . filesize($file));
header('Content-Disposition: attachment; filename="file.zip"');
The downloaded file, is only few bytes. It is an error message:
<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 />
I do not wish to increase memory_limit in php.ini. What are alternative ways to properly render large zip files without tinkering with global settings?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
流式传输下载,这样就不会占用内存。
小例子:
添加正确的下载输出标头,您应该可以解决问题。
Stream the download, so it doesn't choke on memory.
Tiny example:
Add correct output headers for downloading, and you should solve the problem.
PHP 实际上提供了一种简单的方法来将二进制文件直接输出到 Apache,而无需先通过 readfile() 函数将其存储在内存中:
PHP actually provides an easy method to output a binary file directly to Apache without stashing it in memory first via the
readfile()
function: