我对 python 的 php 完全陌生。在 python 中,我对从网页获取 json 结果相当熟悉。但是我似乎在 php 中所做的任何事情都不起作用。我使用的代码是。
<?php
$url = "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=hello&safe=off";
$data = json_decode(file_get_contents($url));
echo $data;
?>`
但这绝对没有任何作用。我在做什么有什么问题吗?我也通过 ideone.com 运行它并得到了这些错误。
`PHP Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/VQMKwy/prog.php on line 3
PHP Warning:file_get_contents(http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=hello&safe=off): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/VQMKwy/prog.php on line 3`