2
以下代碼在循環中。每個循環將URL更改爲新地址。我的問題是每次傳球佔用越來越多的記憶。PHP cUrl循環泄漏內存
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://site.ru/');
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_AUTOREFERER, 'http://site.ru/');
curl_setopt($ch, CURLOPT_HEADER, false);
$html = new \DOMDocument();
$html->loadHTML(curl_exec($ch));
curl_close($ch);
$ch = null;
$xpath = new \DOMXPath($html);
$html = null;
foreach ($xpath->query('//*[@id="tree"]/li[position() > 5]') as $category) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $xpath->query('./a', $category)->item(0)->nodeValue);
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_AUTOREFERER, 'http://site.ru/');
curl_setopt($ch, CURLOPT_HEADER, false);
$html = new \DOMDocument();
$html->loadHTML(curl_exec($ch));
curl_close($ch);
$ch = null;
// etc.
}
內存是2000 Mb。腳本執行時間〜2小時。 PHP版本5.4.4。 如何避免內存泄漏?謝謝!從互聯網
你爲什麼不使用函數?爲了良好的理解和練習 – 2014-11-01 14:05:31
它是例如。 – 2014-11-01 14:07:40
我試過'ini_set('memory_limit','2GB');'並且在PHP ** 5.6.0 **中獲得了成功。什麼是你的PHP版本? – mpyw 2014-11-01 15:33:21