0

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

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/');

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

4

1 回答 1

0

getGoogleCount循环调用呢?

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

foreach ($domains as $domain) {
    echo getGoogleCount($domain);
}
于 2013-07-22T19:40:47.077 回答