一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

用PHP獲取Google AJAX Search API 數(shù)據(jù)的代碼

http://code.google.com/apis/ajaxsearch/documentation/#fonje
復(fù)制代碼 代碼如下:
// This example request includes an optional API key which you will need to
// remove or replace with your own key.
// Read more about why it's useful to have an API key.
// The request also includes the userip parameter which provides the end
// user's IP address. Doing so will help distinguish this legitimate
// server-side traffic from traffic which doesn't come from an end-user.
$url = "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&"
. "q=Paris%20Hilton&key=INSERT-YOUR-KEY&userip=USERS-IP-ADDRESS";

// 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, /* Enter the URL of your site here */);
$body = curl_exec($ch);
curl_close($ch);

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

API KEY 申請(qǐng)地址:
http://code.google.com/apis/ajaxsearch/signup.html

由此,我們可以寫個(gè)函數(shù)像這樣
復(fù)制代碼 代碼如下:
function google_search_api($args, $referer = 'http://www.jb51.NET/', $endpoint = 'web'){
$url = "http://ajax.googleapis.com/ajax/services/search/".$endpoint;
if ( !array_key_exists('v', $args) )
$args['v'] = '1.0';
$url .= '?'.http_build_query($args, '', '&');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_REFERER, $referer);
$body = curl_exec($ch);
curl_close($ch);
return json_decode($body);
}

// 使用示例
$rez = google_search_api(array(
'q' => '21andy.com', // 查詢內(nèi)容
'key' => '你申請(qǐng)到的API KEY',
'userip' => '你的IP地址',
));
header('Content-type: text/html; charset=utf-8;');
echo '<xmp>';
print_r($rez);
echo '</xmp>';

php技術(shù)用PHP獲取Google AJAX Search API 數(shù)據(jù)的代碼,轉(zhuǎn)載需保留來(lái)源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 久艾草国产成人综合在线视频 | 91精品国产福利尤物免费 | 国产精品视频播放 | 欧美videos在线观看 | 真实国产乱子伦久久 | 加勒比日本道 | 思思久久99热免费精品6 | 99热香蕉| 亚洲图片欧美日韩 | 国产精选视频 | 2020国产精品 | 精品日本久久久久久久久久 | 国产精品www夜色影视 | 成人小视频网 | 久久成人国产 | 亚洲精品国产综合久久一线 | 手机在线看黄 | 亚洲第一中文字幕 | 丁香六月婷婷在线 | 四虎sihu新版影院亚洲精品 | 国产一区二区视频在线播放 | 国产视频网站在线 | 婷婷亚洲久悠悠色在线播放 | 国产福利片在线 | 日本精品视频一区二区 | 国产91久久精品一区二区 | 97影院秋霞国产精品 | 五月婷婷丁香在线观看 | 国产精品久久久久久亚洲小说 | 色多多成视频人在线观看 | 午夜黄大色黄大片美女图片 | 天天拍天天色 | 91福利免费视频 | 韩国欧洲一级毛片免费 | 91精品国产91久久久久福利 | 美女一级毛片免费看看 | 日本高清中文字幕一区二区三区 | 国产激情一级毛片久久久 | 黄网站免费观看 | 久久成人免费视频 | 久久一区二区三区99 |