Heim  >  Artikel  >  Backend-Entwicklung  >  Error:Allowed memory size of 134217728 bytes exhausted .PHP报错

Error:Allowed memory size of 134217728 bytes exhausted .PHP报错

WBOY
WBOYOriginal
2016-06-06 20:12:071099Durchsuche

Error:Allowed memory size of 134217728 bytes exhausted .PHP报错

PHP报这个错,说内存溢出。
Error:Allowed memory size of 134217728 bytes exhausted .PHP报错

我想要的答案不是如何解决这个问题,而是“为什么”会报这个错?伪构造函数找不到就会报内存溢出呢?
还有一些情况好像也是会出现这种错误:图片上传过大..无限循环.. 这些情况还能理解..

但是为何构造函数这里也会报?

回复内容:

Error:Allowed memory size of 134217728 bytes exhausted .PHP报错

PHP报这个错,说内存溢出。
Error:Allowed memory size of 134217728 bytes exhausted .PHP报错

我想要的答案不是如何解决这个问题,而是“为什么”会报这个错?伪构造函数找不到就会报内存溢出呢?
还有一些情况好像也是会出现这种错误:图片上传过大..无限循环.. 这些情况还能理解..

但是为何构造函数这里也会报?

首先,你这里写了个无限递归自己看得出把?程序会一直反复调用_initialize()方法。
至于内存溢出,你这里每次调用都会打印一些东西,这些东西都是需要存放空间的。其次无限进栈也需要消耗内存。这里出现内存溢出主要是因为PHP程序还没爆栈,就先超过内存限制了。

ArrayList list = new ArrayList();

<code>    while(true){
        list.add(new Object());
      }</code>

我猜你是第15行的拼写错了。你应该是想写成

<code class="php">if (method_exists($this, '_initialize2')) {
    $this -> _initialize2();
}</code>

但是你写成了

<code class="php">if (method_exists($this, '_initialize2')) {
    $this -> _initialize();
}</code>

很明显的陷入了无限递归死循环,最终的结果是程序运行到超出php内容容量限制,就报错了!~可能正如楼上说的,代码问题!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn