PHP头条
热点:

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('/

[\S\s].*/Ui', $html,$index);
for($i=0;$i<=strlen($index['0']);$i++){
if(is_numeric($index['0'][$i])){
$count.=$index['0'][$i];
}
}
return $count;
}

www.phpzy.comtrue/phpyy/27644.htmlTechArticlephp获取域名的google收录示例 代码如下: function get_index($domain){ $url="http://www.google.com/search?source=hpbih=762aq=faql= $html=file_get_contents($url); preg_match('/ [\S\s].* /Ui', $html,$index); for($i=0;$i if(is_numeric...

相关文章

PHP之友评论

今天推荐