《PHP应用:PHP访问Google Search API的方法》要点:
本文介绍了PHP应用:PHP访问Google Search API的方法,希望对您有用。如果有疑问,可以联系我们。
PHP应用本文实例讲述了PHP拜访Google Search API的方法.分享给大家供大家参考.具体如下:
PHP应用这段代码段演示了如何从php向AJAX搜索API发送哀求.请注意,此示例假定使用 PHP 5.2.对于较早安装的 PHP,请参考对应的官方注释.
PHP应用具体代码如下:
代码如下:
$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...
PHP应用希望本文所述对大家的php程序设计有所赞助.
《PHP应用:PHP访问Google Search API的方法》是否对您有启发,欢迎查看更多与《PHP应用:PHP访问Google Search API的方法》相关教程,学精学透。维易PHP学院为您提供精彩教程。
转载请注明本页网址:
http://www.vephp.com/jiaocheng/11873.html