PHP程序提示:Allowed memory size of 134217728 bytes exhausted (tried to allocate xxx bytes)的原因及解决办法

admin 阅读:96 2024-03-04

PHP程序提示:Allowed memory size of xxx bytes exhausted (tried to allocate xxx bytes) 错误,原因是程序运行占用的内存超出了 PHP 默认配置可使用的内存(134217728 bytes),解决方法就是调大 PHP 的 memory_limit 参数值。

打开 php.ini 文件,将

memory_limit = 128M;

修改为更大的值,如:

memory_limit = 256M;

然后重启 PHP 即可。

 

相关阅读:Composer提示:Fatal error: Allowed memory size of 1610612736 bytes exhausted错误的解决办法

声明

1、部分文章来源于网络,仅作为参考。
2、如果网站中图片和文字侵犯了您的版权,请联系1943759704@qq.com处理!