<?php
function GoogleIndex($url) // Количество проиндексированных страниц в Google
{
error_reporting(0);
$content = file_get_contents('http://ajax.googleapis.com/ajax/services/search/web?v=1.0&filter=0&q=site:' .urlencode($url));
$data = json_decode($content);
return intval($data->responseData->cursor->estimatedResultCount);
}
echo GoogleIndex('http://мойсайт.ru');
?>