尝试大脚本时出现内存不足和内部服务器错误
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑 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");
PHP 修复:
.htaccess 修复:
php.ini 修复:
PHP Fix:
.htaccess Fix:
php.ini Fix: