PHP ini_get() 和 php.ini 不同步

发布于 2024-09-10 09:28:29 字数 140 浏览 5 评论 0原文

我的 php.ini 的内存限制为 256M。 phpinfo() 反映了这一点。但在 PHP 内部,ini_get('memory_limit');返回32M。我的致命错误超出内存限制也说最大是32M。

知道为什么 phpinfo() 对我撒谎吗?

My php.ini has a memory_limit of 256M. phpinfo() reflects this. But from within PHP, ini_get('memory_limit'); returns 32M. My fatal errors for exceeding memory limit also say that the max is 32M.

Any ideas why phpinfo() is lying to me?

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

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

发布评论

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

评论(3

椒妓 2024-09-17 09:28:29

一个是来自 cli 的结果,另一个是来自 web 的结果?

are one of the results from cli, and the other from web?

逆流 2024-09-17 09:28:29

可以覆盖 Apache 配置文件中的 php.ini 参数。

根据系统的不同,它们的位置可能会有所不同,但请检查 /etc/apache2、/etc/apache2/conf.d、/etc/apache2/sites-enabled 下的所有内容

It's possible to override php.ini parameters in the Apache configuration files.

Depending on the system, their location may vary, but check anything under /etc/apache2, /etc/apache2/conf.d, /etc/apache2/sites-enabled

送舟行 2024-09-17 09:28:29

您是否尝试过使用 PHP 代码设置限制作为测试?

ini_set('内存限制'​​, '256M');

have you tried setting the limit with PHP code as a test?

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

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