PHP访问Google Search API的方法

前端之家收集整理的这篇文章主要介绍了PHP访问Google Search API的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

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

具体代码如下:

代码如下:
// 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程序设计有所帮助。

原文链接:https://www.f2er.com/php/22525.html

猜你在找的PHP相关文章