Home > Backend Development > PHP Tutorial > Error:Allowed memory size of 134217728 bytes exhausted .PHP报错

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

WBOY
Release: 2016-06-06 20:12:07
Original
1119 people have browsed it

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>
Copy after login

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

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

但是你写成了

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

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

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template