DOMDocument PHP内存泄漏

前端之家收集整理的这篇文章主要介绍了DOMDocument PHP内存泄漏前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在MAC上的MAMP下运行 PHP 5.3.6,内存使用量会增加每x次调用(3到8之间),直到脚本因内存耗尽而死亡.我该如何解决
libxml_use_internal_errors(true);
while(true){
 $dom = new DOMDocument();
 $dom->loadHTML(file_get_contents('http://www.ebay.com/'));
 unset($dom);
 echo memory_get_peak_usage(true) . '<br>'; flush();
}
使用libxml_use_internal_errors(true);抑制错误输出但建立连续的错误记录,并附加到每个循环上.禁用内部日志记录并禁止PHP警告,或清除每个循环迭代的内部日志,如下所示:
<?PHP
libxml_use_internal_errors(true);
while(true){
 $dom = new DOMDocument();
 $dom->loadHTML(file_get_contents('ebay.html'));
 unset($dom);
 libxml_use_internal_errors(false);
 libxml_use_internal_errors(true);
 echo memory_get_peak_usage(true) . "\r\n"; flush();
}
?>
原文链接:https://www.f2er.com/php/135363.html

猜你在找的PHP相关文章