我们如何使用PHP使用API​​配置Google自定义搜索

时间:2012-02-23 06:30:01

标签: php javascript google-search-api

我想使用Google Custom Search API,我知道如何在PHP语言中使用它。例如: -

<?php
 $keyword = "Demo Test" ;
 $URL = "http://www.google.com/search?hl=en&q=demo+test&oq=demo+test&aq=f&aqi=g-s1g5g-v3g-j1&aql=&gs_sm=3&gs_upl=298789l300162l0l300519l9l9l0l0l0l0l274l1243l0.3.3l6l0" ;
 echo "return number of the website position"; // using method...
 ?>

它返回网站的位置编号。以前我们用作cURL。由于Google cURL Blockage,我们无法搜索我们之前的方法。

您能否建议我采用任何合适的配置方式..

谢谢

1 个答案:

答案 0 :(得分:1)