我托管在godaddy共享主机上。我的数据库有超过500个条目,但我希望随着时间的推移它会更高。也许成千上万。我有这个作为一个cron作业运行,但它只有33记录后耗尽内存(64兆)。因为我在共享主机上,所以无法更改最大内存。有什么办法可以减少内存使用量吗?也许有任何方法可以在每次循环时清除内存?
include('simple_html_dom.php');
$html = new simple_html_dom();
$price_query = mysql_query("SELECT * FROM prices");
while ($price_rows = mysql_fetch_assoc($price_query))
{
$vendor_id = $price_rows['vendor_id'];
$product_id = $price_rows['product_id'];
$product_page = $price_rows['product_page'];
$product_string = $price_rows['product_string'];
$product_array = $price_rows['product_array'];
if (urlOK($product_page))
{
$html = file_get_html($product_page);
$new_price = $html->find($product_string);
$new_price = preg_replace('/[\$,]/', '', $new_price);
$product_price = $new_price[$product_array];
$product_price = strip_tags($product_price);
$qry="UPDATE prices SET product_price='$product_price' WHERE product_id = '$product_id' AND vendor_id = '$vendor_id'";
mysql_query($qry);
}
else
{
$qry="UPDATE prices SET product_price='0.00' WHERE product_id = '$product_id' AND vendor_id = '$vendor_id'";
mysql_query($qry);
}
$vendor_id = null;
$product_id = null;
$product_page = null;
$product_string = null;
$product_array = null;
$qry = null;
$html = null;
}
这是我调用的1函数:
function urlOk($url)
{
$headers = @get_headers($url);
if($headers[0] == 'HTTP/1.1 200 OK') return true;
else return false;
}
答案 0 :(得分:2)
好的,经过几个小时的研究,我已经弄明白了。问题本身在simple_html_dom库中。如果在循环中使用,则存在大量内存泄漏。要修复,只需将其添加到循环的末尾:
$html->clear();
unset($html);