1. 程式人生 > >php file_get_contents返回空 無效解決辦法

php file_get_contents返回空 無效解決辦法

[導讀] file_get_contents函式多用來於來採集遠端伺服器上的內容,但使用file_get_contents函式之前我們在php ini中是必須把allow_url_fopen開啟才行問題描述fopen(),file_get_contents(),getimagesize() 等都不能正

file_get_contents函式多用來於來採集遠端伺服器上的內容,但使用file_get_contents函式之前我們在php.ini中是必須把allow_url_fopen開啟才行  

問題描述

fopen(),file_get_contents(),getimagesize() 等都不能正常獲得網路上的內容,具體表現為凡引數是URL的,一律返回空值

如果是windows可找開

allow_url_fopen開啟

如果是否linux中可以

重新編譯PHP,去掉–with-curlwrapper 引數——編譯前記得先執行 make clean。


windows 在未開戶allow_url_fopen時我們利用

 程式碼如下 複製程式碼

< ?php
$file_contents = file_get_contents(''http://www.php100.com/'');
echo $file_contents;
?>

是獲取不到值的,但我們可以利用function_exists來判斷此函式是否可用。

 程式碼如下 複製程式碼


function file_get_content($url) {
if (function_exists(‘file_get_contents')) {
$file_contents = @file_get_contents($url);
}
if ($file_contents == ”) {
$ch = curl_init();
$timeout = 30;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
}
return $file_contents;
}