シンプルな方法でWebページのコンテンツを取得しようとしています:
$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 Web サイトからの最終ビルド) を使用しています。何が問題を引き起こしているのかわかりません。