URLのGoogleインデックス付きページを取得するためのこのスクリプトがあります:
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/');
しかし、それ以上の URL のデータを取得することはできません。次に、いくつかのオンラインツールを使用しましたが、結果は私のものとは異なります。制限なしでこれらのデータを取得する他の方法はありますか? ありがとう。