PHP的内存限制 Allowed memory size of 134217728 bytes exhausted (tried to allocate 1099 bytes) in

 

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 1099 bytes) in   
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 1099 bytes) in

 解释是可用内存已耗尽,这关系到PHP的memory_limit的设置问题。

这里有两种方法解决

1、修改php.ini

memory_limit = 256

这种方法需要重启服务器,很显然,此方法对虚拟机有限制。

2、通过ini_set函数修改配置选项值

ini_set ('memory_limit', '128M')  

ini_set ('memory_limit', '128M')

posted on 2017-02-21 17:09  小乔流水人家  阅读(262)  评论(0)    收藏  举报

导航