2
我試圖從某個網站獲取內容,但如果網站已關閉,需要很長時間才能打開(如1分鐘)。如何限制運行DOMDocument-> loadHtmlFile時的超時時間?
$html = new DOMDocument();
@$html->loadHtmlFile('http://somewebsite.com');
$xpath = new DOMXPath($html);
$links = $xpath->query("//p[@class='result']");
如何在5秒後使其超時?
你基本上要檢查鏈接如果一個網站在線...檢查這一個:http://css-tricks.com/snippets/php/check-if-website-is-available/ – bestprogrammerintheworld
哇這真的幫助^^謝謝bestprogrammerintheworld –
你'歡迎光臨:-) – bestprogrammerintheworld