欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php获取域名的google收录示例_PHP教程

程序员文章站 2022-04-30 19:08:24
...
复制代码 代码如下:

function get_index($domain){
$url="http://www.google.com/search?source=hp&biw=1440&bih=762&q=site%3A$domain&aq=f&aqi=g10&aql=&oq=";
$html=file_get_contents($url);
preg_match('/
[\S\s].*/Ui', $html,$index);
for($i=0;$iif(is_numeric($index['0'][$i])){
$count.=$index['0'][$i];
}
}
return $count;
}

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/745208.htmlTechArticle复制代码 代码如下: function get_index($domain){ $url="http://www.google.com/search?source=hpbih=762aq=faql= $html=file_get_contents($url); preg_match('/div id=resultStats[\...
相关标签: 域名 google收录