php获取域名的google收录示例
php获取域名的google收录示例
发布时间:2016-12-29 来源:查字典编辑
摘要:复制代码代码如下:functionget_index($domain){$url="http://www.google.com/search...

复制代码 代码如下:

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>[Ss].*<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教程学习
编程开发子分类