当前位置:首页 > PHP教程 > php应用 > 列表

PHP访问Google Search API的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-15 17:28:20 浏览: 评论:0 

这篇文章主要介绍了PHP访问Google Search API的方法,实例分析了php针对谷歌API访问的技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了PHP访问Google Search API的方法,分享给大家供大家参考,具体如下:

这段代码段演示了如何从php向AJAX搜索API发送请求,请注意,此示例假定使用 PHP 5.2,对于较早安装的 PHP,请参考对应的官方注释。

具体代码如下:

  1. $url = "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=Paris%20Hilton"
  2.  
  3. // sendRequest 
  4. // note how referer is set manually 
  5. $ch = curl_init(); 
  6. curl_setopt($ch, CURLOPT_URL, $url); 
  7. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
  8. curl_setopt($ch, CURLOPT_REFERER, "http://www.mysite.com/index.html"); 
  9. $body = curl_exec($ch); 
  10. curl_close($ch); 
  11.  
  12. // now, process the JSON string 
  13. $json = json_decode($body); 
  14. // now have some fun with the results...

Tags: Google Search API

分享到: