最近需要擷取別人網站上的音樂資料。用了file_get_contents函數,但是總是會遇到擷取失敗的問題,儘管按照手冊中的 例子設定了逾時,可多數時候不會奏效:
$config[‘context’] = stream_context_create(array(‘http’ => array(‘method’ => “GET”,
’timeout’ => 5//這個逾時時間不穩定,經常不奏效
)
));
這時候,看一下伺服器的串連池,會發現一堆類似的錯誤,讓我頭疼萬分:
file_get_contents(http://*): failed to open stream…
現在改用了curl庫,寫了一個函數替換:
function curl_file_get_contents(durl){ch = curl_init();
curl_setopt(ch,CURLOPTURL,durl);
curl_setopt(ch,CURLOPTTIMEOUT,5);curlsetopt(ch, CURLOPT_USERAGENT, USERAGENT);
curl_setopt($ch, CURLOPT_REFERER,REFERER);
curl_setopt(ch,CURLOPTRETURNTRANSFER,1);r = curl_exec(ch);curlclose(ch);
return $r;
}
如此,除了真正的網路問題外,沒再出現任何問題。
這是別人做過的關於curl和file_get_contents的測試:
file_get_contents抓取google.com需用秒數:
2.31319094
2.30374217
2.21512604
3.30553889
2.30124092
curl使用的時間:
0.68719101
0.64675593
0.64326
0.81983113
0.63956594
差距很大?呵呵,從我使用的經驗來說,這兩個工具不只是速度有差異,穩定性也相差很大。
建議對網路資料抓取穩定性要求比較高的朋友使用上面的 curl_file_get_contents函數,不但穩定速度快,還能假冒瀏覽器欺騙目標地址哦!
看到的其他文章收藏於此===============================
php fsockopen
方法1: 用file_get_contents 以get方式擷取內容
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
').text(i)); }; $numbering.fadeIn(1700); }); });
以上就介紹了php讀取網路檔案 curl, fsockopen ,file_get_contents 幾個方法的效率對比,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。