网络编程
位置:首页>> 网络编程>> php编程>> php获取域名的google收录示例

php获取域名的google收录示例

  发布时间:2022-08-22 07:26:48 

标签:域名,google收录

php获取域名的google收录示例


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;
}
0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com