1. 程式人生 > >完美解決failed to open stream: HTTP request failed!(file_get_contents引起的)

完美解決failed to open stream: HTTP request failed!(file_get_contents引起的)

當使用php5自帶的file_get_contents方法來獲取遠端檔案的時候,有時候會出現file_get_contents(): failed to open stream: HTTP request failed!這個警告資訊。

google或者baidu一下,好多這樣的問題,解決的方法都是修改php.ini,把allow_url_fopen給啟用,改成 allow_url_fopen = On

這樣做可以解決某些人的問題,有人說在php.ini中,有這樣兩個選項:allow_url_fopen =on(表示可以通過url開啟遠端檔案),user_agent="PHP"(表示通過哪種指令碼訪問網路,預設前面有個 " ; " 去掉即可。)重啟伺服器。

但是有些還是會有這個警告資訊,想用完美的解決還差一步,還得設定php.ini裡面的user_agent,php預設的user_agent是PHP,我們把它改成Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)來模擬瀏覽器就可以了

user_agent=”Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)”

     在工作中遇到這個問題,後完美解決,故分享給大家。
我批量抓取chemblink的結構式發現迴圈後有部分圖片無法顯示,而遠端檔案是存在的。
抓取遠端檔案的時候出現類似Warning: readfile(

http://www.php100.com/logo.gif) [function.readfile]: failed to open stream: HTTP request failed! 這樣的警告資訊,我使用的是

ob_start();
readfile("http://www.php100.com/logo.gif");
$img = ob_get_contents();
ob_end_clean();


這樣在執行中會時不時的出現上述錯誤,我也換過file_get_contents等其他函式都沒用用,在網上查閱後發現用CURL方法抓取不會出錯

$url = "http://www.php100.com/logo.gif

";
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT,10);
$img = curl_exec($ch);