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 |
是獲取不到值的,但我們可以利用function_exists來判斷此函式是否可用。
程式碼如下 | 複製程式碼 |
|