PHP bağlantı sorunu ve zaman aşımı sorunu

0 Cevap php

Ben MySQL DB bir yol adını çekmeye çalışıyor ve daha sonra basit HTML DOM kullanarak yolunu ararken bir sorun yaşıyorum. Bu sayı 2000 + girişleri olmasıdır ve bu bağlantı sorunları neden olduğunu biliyorum.

Error Message, A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.

Code:

function add_title($path_array,$count){  
    $admin = new Admin();
    $admin->connect();
    for ($x=0 ;$x<$count;$x++)
    {
        $html = file_get_html($path_array[$x]);
        foreach($html->find('title') as $title_element){
            mysql_query("INSERT INTO images SET title='".$title_element."' WHERE path = '". $path_array[$x]."'");
        }
    }
    $admin->close_connection();
}

0 Cevap