php訪問google search api的方法
這篇文章主要介紹了php訪問google search api的方法,實例分析了php針對谷歌api訪問的技巧,具有一定參考借鑒價值,需要的朋友可以參考下
本文實例講述了php訪問google search api的方法。分享給大家供大家參考。具體如下:
這段代碼段演示了如何從php向ajax搜索api發(fā)送請求。請注意,此示例假定使用 php 5.2。對于較早安裝的 php,請參考對應的官方注釋。
具體代碼如下:
代碼如下:
- $url = ;
- // 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, );
- $body = curl_exec($ch);
- curl_close($ch);
- // now, process the json string
- $json = json_decode($body);
- // now have some fun with the results...
希望本文所述對大家的php程序設計有所幫助。
責任編輯:王雪燕
來源:
站長網(wǎng)