Fatal error: Out of memory (allocated 786432)提示解决办法

前端之家收集整理的这篇文章主要介绍了Fatal error: Out of memory (allocated 786432)提示解决办法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

今天在运行PHPmyadmin时页面突然出现了Fatal error: Out of memory (allocated 786432)提示,看英文的意思是说超过了指定内存大小了,错误提示

Fatal error: Out of memory (allocated 786432) (tried to allocate 393216 bytes) in E:xxxxlibrariescommon.lib.PHP on line 3135

解决办法

一,在你程序页面加入如下代码:

ini_set('memory_limit',"256M")

二,在PHP.ini中修改,打开PHP.ini修改:

memory_limit = 1024M

依照服务器配置进行调整配置的内存使用大小修改后重启iis/apache

猜你在找的PHP相关文章