尝试大脚本时出现内存不足和内部服务器错误

发布于 2024-11-10 06:33:11 字数 305 浏览 3 评论 0原文

PHP Fatal error:  Out of memory (allocated 26214400) (tried to allocate 9175041 bytes) in ...

我注意到这个问题。我在尝试编写大脚本时遇到内存不足相关的 500 Internet 服务器错误。大是指我执行的查询给出了 4000 或 5000 行,并且我尝试使用 foreach 来编写它们(在本例中用于 excel 提取)。

php 正好在 foreach 语句的行中给出。

有谁有经验可以告诉我一些关于这个的情况吗?

PHP Fatal error:  Out of memory (allocated 26214400) (tried to allocate 9175041 bytes) in ...

I am having this problem I noticed. I am getting the out of memory related 500 internet server error while trying to write big scripts. Big in the sense that I do a query that gives 4000 or 5000 rows, and I try writing them all using a foreach (for an excel extraction in this given case).

The php is giving exactly in the line that serves the foreach statement.

Anyone experienced to show me some light on this one please?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

╭ゆ眷念 2024-11-17 06:33:11

编辑 php.ini 文件并增加 memory_limit。

或者,在此脚本的顶部包含:

ini_set("memory_limit","256M");

Edit your php.ini file and increase the memory_limit.

Or, at the top of this script, include:

ini_set("memory_limit","256M");

以往的大感动 2024-11-17 06:33:11

PHP 修复:

ini_set('memory_limit', '64M');

.htaccess 修复:

php_value memory_limit 64M

php.ini 修复:

memory_limit = 64M

PHP Fix:

ini_set('memory_limit', '64M');

.htaccess Fix:

php_value memory_limit 64M

php.ini Fix:

memory_limit = 64M
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文