使用PHP脚本如何检查网站是索引还是没有在google中编入索引...以及api用于此概念的确切...请在此提出任何想法和您宝贵的建议..
<?php
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 ($data->responseData->cursor->estimatedResultCount);
}
echo getGoogleCount('stackoverflow.com');
?>
这对我来说没有用。 使用哪个第三方网址查找信息......