php获取域名的google收录示例

网络编程 2021-07-05 09:50www.168986.cn编程入门
这篇文章主要介绍了php获取域名的google收录具体实现,需要的朋友可以参考下
代码如下:

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

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by