PHP ini_get() 和 php.ini 不同步
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
一个是来自 cli 的结果,另一个是来自 web 的结果?
are one of the results from cli, and the other from web?
可以覆盖 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
您是否尝试过使用 PHP 代码设置限制作为测试?
ini_set('内存限制', '256M');
have you tried setting the limit with PHP code as a test?
ini_set('memory_limit', '256M');