PHP訪問Google Search API的方法
更新時間:2015年03月05日 10:24:21 作者:紅薯
這篇文章主要介紹了PHP訪問Google Search API的方法,實例分析了php針對谷歌API訪問的技巧,具有一定參考借鑒價值,需要的朋友可以參考下
本文實例講述了PHP訪問Google Search API的方法。分享給大家供大家參考。具體如下:
這段代碼段演示了如何從php向AJAX搜索API發(fā)送請求。請注意,此示例假定使用 PHP 5.2。對于較早安裝的 PHP,請參考對應(yīng)的官方注釋。
具體代碼如下:
復(fù)制代碼 代碼如下:
$url = "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=Paris%20Hilton";
// 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://www.mysite.com/index.html");
$body = curl_exec($ch);
curl_close($ch);
// now, process the JSON string
$json = json_decode($body);
// now have some fun with the results...
// 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://www.mysite.com/index.html");
$body = curl_exec($ch);
curl_close($ch);
// now, process the JSON string
$json = json_decode($body);
// now have some fun with the results...
希望本文所述對大家的php程序設(shè)計有所幫助。
相關(guān)文章
php獲取通過http協(xié)議post提交過來xml數(shù)據(jù)及解析xml
php 如何獲取請求的xml數(shù)據(jù),對方通過http協(xié)議post提交過來xml數(shù)據(jù),php如何獲取到這些數(shù)據(jù)呢?2012-12-12解析php中die(),exit(),return的區(qū)別
本篇文章是對php中die(),exit(),return的區(qū)別進行了詳細的分析介紹,需要的朋友參考下2013-06-06Windows2003 下 MySQL 數(shù)據(jù)庫每天自動備份
Windows2003 下 MySQL 數(shù)據(jù)庫每天自動備份...2006-12-12