代码之家  ›  专栏  ›  技术社区  ›  Matteo Riva

zend\u mm\u简单html\u dom堆错误

  •  2
  • Matteo Riva  · 技术社区  · 14 年前

    simplehtmldom 我得到一个错误:

    zend_mm_heap corrupted
    

    2 回复  |  直到 14 年前
        1
  •  5
  •   Mark Baker    14 年前

    有一个 bug 可以 (尽管并不总是一致)影响任何处理大量对象的应用程序,特别是在服务器负载过重时;但在apache日志中会留下“zend\u mm\u heap corrupted”消息。

    导出使用\u ZEND \u ALLOC=0 到apache envvars文件

        2
  •  4
  •   cidious    12 年前

    我在simplehldom的SF主页上找到的:

    更改简单html中的4行代码_dom.php文件(这对我很有用)

    // clean up memory due to php5 circular references memory leak...
    function clear()
    {
        unset($this->dom);
        unset($this->nodes);
        unset($this->parent);
        unset($this->children);
    }