程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php file_get_contents返回空 無效解決辦法

php file_get_contents返回空 無效解決辦法

編輯:關於PHP編程

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.bkjia.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;
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved