不同的结果谷歌索引页面与PHP

时间:2013-07-22 19:26:01

标签: php google-api google-index

我有这个脚本来获取网址的谷歌索引页面:

function getGoogleCount($domain) {
$content = file_get_contents('http://ajax.googleapis.com/ajax/services/' .
    'search/web?v=1.0&filter=0&q=site:' . urlencode($domain));
$data = json_decode($content);
return intval($data->responseData->cursor->estimatedResultCount);
}

echo getGoogleCount('http://stackoverflow.com/');

但它不允许我获取更多网址的数据。然后我使用了一些在线工具,结果与我的不同。还有其他方法可以无限制地获取这些数据吗? 感谢。

1 个答案:

答案 0 :(得分:0)

如何在循环中调用getGoogleCount呢?

$domains = array('domain 1', 'domain 2');

foreach ($domains as $domain) {
    echo getGoogleCount($domain);
}