php获取域名的google收录示例
时间:2021-01-15 11:13:30|栏目:PHP代码|点击: 次
复制代码 代码如下:
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('/<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;
}
栏 目:PHP代码
下一篇:PHP获取文件扩展名的4种方法
本文标题:php获取域名的google收录示例
本文地址:http://www.codeinn.net/misctech/45544.html