我有这个脚本来获取网址的谷歌索引页面:
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/');
但它不允许我获取更多网址的数据。然后我使用了一些在线工具,结果与我的不同。还有其他方法可以无限制地获取这些数据吗? 感谢。
答案 0 :(得分:0)
如何在循环中调用getGoogleCount
呢?
$domains = array('domain 1', 'domain 2');
foreach ($domains as $domain) {
echo getGoogleCount($domain);
}