本文主要是介绍Allowed memory size of 149946368 bytes exhausted (tried to allocate 32640 bytes),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
- 问题:PHP Fatal error: Allowed memory size of 149946368 bytes exhausted (tried to allocate 32640 bytes)
- 原因:php限制了该脚本的能申请到的内存;
解决办法:
修改php.ini文件中memory_limit, 并重启php-fpm;
在脚本中添加ini_set(‘memory_limit’, ‘-1’);
在脚本中可使用memory_get_usage()函数查看分配给 脚本的内存量,单位是字节。
这篇关于Allowed memory size of 149946368 bytes exhausted (tried to allocate 32640 bytes)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!