php讀取網路檔案 curl, fsockopen ,file_get_contents 幾個方法的效率對比

來源:互聯網
上載者:User
最近需要擷取別人網站上的音樂資料。用了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教程有興趣的朋友有所協助。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.