中文字幕日韩一区二区_国产一区二区av_国产毛片av_久久久久国产一区_色婷婷电影_国产一区二区精品

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

http://code.google.com/apis/ajaxsearch/documentation/#fonje
復制代碼 代碼如下:
// 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 申請地址:
http://code.google.com/apis/ajaxsearch/signup.html

由此,我們可以寫個函數(shù)像這樣
復制代碼 代碼如下:
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', // 查詢內容
'key' => '你申請到的API KEY',
'userip' => '你的IP地址',
));
header('Content-type: text/html; charset=utf-8;');
echo '<xmp>';
print_r($rez);
echo '</xmp>';

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

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

主站蜘蛛池模板: 午夜精品在线 | 精品无码久久久久久国产 | 亚洲国产aⅴ成人精品无吗 欧美激情欧美激情在线五月 | 亚洲午夜电影 | 永久免费在线观看 | 久久久精品一区二区三区 | 特黄毛片| 欧美日韩中文字幕在线 | 国产视频1区 | 成人做爰www免费看视频网站 | 婷婷色成人 | 天天爽夜夜骑 | 黄色免费在线观看 | 日本在线免费 | 成人免费淫片aa视频免费 | 国产色网站| 精品久久国产 | 日韩视频一级 | 成人免费在线电影 | 欧美一区二区三区久久精品 | 日日综合 | 亚洲国产成人精品久久 | 三级黄视频在线观看 | 国产精品久久久久久久模特 | 欧美日韩国产一区二区三区 | 国产免费一区二区 | 香蕉婷婷 | 狠狠操狠狠搞 | 亚洲一区二区在线播放 | 日本中文字幕日韩精品免费 | 久久久久久国产精品免费免费狐狸 | a在线观看 | 男女污网站| 国产精品久久毛片av大全日韩 | 黑人精品欧美一区二区蜜桃 | 欧一区二区 | 免费天天干| 欧美在线观看一区 | 亚洲美女视频 | 国产精品成人一区二区三区夜夜夜 | 四虎影音 |