程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Fatal error: Out of memory (allocated 786432)提示解決辦法

Fatal error: Out of memory (allocated 786432)提示解決辦法

編輯:關於PHP編程

今天在運行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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved