我在使用file_get_contents函數時遇到問題。我使用它來獲得來自不同Web服務器的響應,但它不返回任何內容(使用var_dump顯示爲空字符串)。此外,只有在調用此特定服務器時纔會出現問題,因爲我在使用Google的地址時得到了結果;它在我的本地機器上工作正常。 我也試過cUrl - 但結果相同。PHP - 使用file_get_contents問題
1
A
回答
0
你知道:
echo ini_get('allow_url_fopen');
如果這是假的,你應該嘗試調用的file_get_contents讓它在你的php.ini設置爲true。
+1
不能成爲問題,因爲OP說打電話谷歌工作 – Gordon 2010-04-06 10:45:42
+0
哦,你是對的。抱歉。 – Turbotoast 2010-04-06 11:46:54
0
也許你需要設置用戶代理?有些網站可能會檢查並禁止漫遊器。
ini_set('user_agent', 'Name of your bot');
0
這可能與您所調用的服務器的問題是具有適當權限的文件並且可以從普通的Web瀏覽器訪問嗎?如果文件訪問受IP限制,您的服務器的IP是否允許?
相關問題
- 1. PHP file_get_contents問題
- 2. Php file_get_contents()問題
- 3. PHP file_get_contents()問題
- 4. File_get_contents,PHP,MySQL插入問題
- 5. 問題解析PHP與file_get_contents
- 6. 使用file_get_contents(PHP)
- 7. json_decode的file_get_contents問題
- 8. file_get_contents內存問題
- 9. 超時問題file_get_contents?
- 10. PHP +問題與file_get_contents和比較價值
- 11. $ .ajax之後的jQuery和php-file_get_contents()問題
- 12. 問題php file_get_contents和文件長度
- 13. 在PHP中使用file_get_contents時訪問$ _SESSION
- 14. 在PHP中使用file_get_contents時訪問$ _SESSION
- 15. 使用XML和PHP進行字符編碼問題file_get_contents
- 16. 問題與JSON的file_get_contents取
- 17. json_encode問題與的file_get_contents
- 18. 的mod_rewrite及的file_get_contents問題
- 19. file_get_contents奇怪的問題
- 20. 使用PHP函數file_get_contents
- 21. PHP file_get_contents使用變量
- 22. file_get_contents()連接超時問題
- 23. PHP file_get_contents
- 24. php file_get_contents
- 25. file_get_contents()PHP
- 26. RHEL 6上的file_get_contents()存在問題6
- 27. 問題使用PHP
- 28. 問題使用PHP
- 29. 問題使用PHP
- 30. 當$ url是一個變量時使用file_get_contents($ url)遇到問題
請提供'get_headers($ theURL)'的響應,並確保啓用了'error_reporting(-1)'。點擊問題下方的「編輯」鏈接以添加詳細信息。 – Gordon 2010-04-06 07:24:49