php 渲染大型 zip 文件 - 达到内存限制

发布于 2024-11-14 16:00:19 字数 458 浏览 4 评论 0原文

我尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

可可 2024-11-21 16:00:19

流式传输下载,这样就不会占用内存。
小例子:

$handle = fopen("exampe.zip", "rb");
while (!feof($handle)) {
    echo fread($handle, 1024);
    flush();
}
fclose($handle);

添加正确的下载输出标头,您应该可以解决问题。

Stream the download, so it doesn't choke on memory.
Tiny example:

$handle = fopen("exampe.zip", "rb");
while (!feof($handle)) {
    echo fread($handle, 1024);
    flush();
}
fclose($handle);

Add correct output headers for downloading, and you should solve the problem.

情独悲 2024-11-21 16:00:19

PHP 实际上提供了一种简单的方法来将二进制文件直接输出到 Apache,而无需先通过 readfile() 函数将其存储在内存中:

header('Content-Type: application/zip');
header('Content-Length: ' . filesize($file));
header('Content-Disposition: attachment; filename="file.zip"');
readfile('file.zip');

PHP actually provides an easy method to output a binary file directly to Apache without stashing it in memory first via the readfile() function:

header('Content-Type: application/zip');
header('Content-Length: ' . filesize($file));
header('Content-Disposition: attachment; filename="file.zip"');
readfile('file.zip');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文