gpt4 book ai didi

PHP 简单 HTML DOM 解析器内存泄漏

转载 作者:行者123 更新时间:2023-12-04 18:19:01 27 4
gpt4 key购买 nike

我正在使用 PHP Simple HTML DOM Parser它消耗了大量内存(使用 memory_get_usage 发现)!我试过unsetting它,但它什么也没做。

最佳答案

http://simplehtmldom.sourceforge.net/manual_faq.htm

Q: This script is leaking memory seriously... After it finished running, it's not cleaning up dom object properly from memory..

A: Due to php5 circular references memory leak, after creating DOM object, you must call dom->clear() to free memory if call file_get_dom() more then once.

Example:



$html = file_get_html(...);  // do something...  
$html->clear();
unset($html);

当您在循环中使用此库时,会经常发生这种情况。

关于PHP 简单 HTML DOM 解析器内存泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11069068/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com