如何使用脚本检查网站是否已编入索引或未编入索引

时间:2017-03-22 09:02:57

标签: php json google-api

使用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');
?>

这对我来说没有用。  使用哪个第三方网址查找信息......

0 个答案:

没有答案