這篇文章主要介紹了PHP訪問(wèn)Google Search API的方法,實(shí)例分析了php針對(duì)谷歌API訪問(wèn)的技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
本文實(shí)例講述了PHP訪問(wèn)Google Search API的方法。分享給大家供大家參考。具體如下:
這段代碼段演示了如何從php向AJAX搜索API發(fā)送請(qǐng)求。請(qǐng)注意,此示例假定使用 PHP 5.2。對(duì)于較早安裝的 PHP,請(qǐng)參考對(duì)應(yīng)的官方注釋。
具體代碼如下:
代碼如下:
$url = "";
// 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, "");
$body = curl_exec($ch);
curl_close($ch);
// now, process the JSON string
$json = json_decode($body);
// now have some fun with the results...
希望本文所述對(duì)大家的php程序設(shè)計(jì)有所幫助。
更多信息請(qǐng)查看IT技術(shù)專(zhuān)欄