0

我正在尝试这样做

$url = "https://ajax.googleapis.com/ajax/services/search/web?v=1.0&"
    . "q=Paris%20Hilton&userip=$_SERVER[SERVER_ADDR]";

// sendRequest
// note how referer is set manually
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_REFERER, 'http://google.com');
$body = curl_exec($ch);
curl_close($ch);

// now, process the JSON string
$json = json_decode($body);
// now have some fun with the results...

这从他们的文档中非常直接,但它似乎没有返回任何内容,但 file_get_contents 对相同的 url 不是 https 而是 http

我也尝试只使用 http 进行 curl 但没有运气。任何帮助表示赞赏伙计们:)

4

1 回答 1

0

会有一个小问题和由此产生的通知,应该更改:

$url = "https://ajax.googleapis.com/ajax/services/search/web?v=1.0&"
. "q=Paris%20Hilton&userip=" . $_SERVER['SERVER_ADDR'];

除此之外,你知道你肯定启用了 Curl 扩展吗?你有错误吗?

于 2013-05-14T15:22:41.263 回答