1

我托管在 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;
}
4

1 回答 1

2

好的,经过几个小时的研究,我已经弄清楚了。问题本身在 simple_html_dom 库中。如果在循环中使用,则会出现大量内存泄漏。要修复,只需将其添加到循环的末尾:

$html->clear();
unset($html);   
于 2013-09-09T00:23:05.950 回答