我正在尝试通过简单的方式获取网页内容:
$url = 'http://www.google.com';
$result = file_get_contents($url);
echo $result;
但我收到此警告,但没有内容$result
:
Warning: file_get_contents(http://www.google.com): in C:\wamp\www\google\google_search.php on line 76
Call Stack
# Time Memory Function Location
1 0.0005 277824 {main}( ) ..\google_search.php:0
2 0.0106 757640 file_get_contents ( ) ..\google_search.php:76
在我的 PHP.INI 中,我允许了“url_fopen”:
allow_url_fopen On On
我在 x64 WIN 机器上使用“Apache 2.4.4”和“PHP 5.4.12”(最后从 WAMP 网站构建)。我无法弄清楚是什么导致了我的问题。