加入收藏 | 设为首页 | 会员中心 | 我要投稿 南平站长网 (https://www.0599zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

php完成查询百度google收录情况

发布时间:2022-01-15 20:15:43 所属栏目:PHP教程 来源:互联网
导读:写了一个小东西记录baidu和google对于站点的收录情况,现在可以查询了,其实也没什么难度,就是去file下远程文件,然后分析下。 对了貌似查google pr的东西只是file一个地址而已,如此说了就没有什么难度了 下面是代码,对了getdetail函数也可以这样写,用
  写了一个小东西记录baidu和google对于站点的收录情况,现在可以查询了,其实也没什么难度,就是去file下远程文件,然后分析下。
  对了貌似查google pr的东西只是file一个地址而已,如此说了就没有什么难度了
 
  下面是代码,对了getdetail函数也可以这样写,用正则去匹配
  $wordf = preg_quote($wordf);
  $wordb = preg_quote($wordb);
  $pagecontent = @preg_replace("//s*$wordf(.+?)$wordb/s*/e", "returndetail('//1', '$type')", $pagecontent);
  $pagecontent = @preg_replace("//s*".preg_quote($wordf)."(.+?)".preg_quote($wordb)."/s*/e", "returndetail('//1', '$type')", $pagecontent);
 
 
  完整代码如下,file取得文件,分析,输出:
  < ?php
  $seodetail = array();
  $domain = !empty($_GET['q']) ? $_GET['q'] : 'www.mycodes.net';
 
  baidudetail($domain);
  googledetail($domain);
 
  var_dump($seodetail);
 
  function baidudetail($domain) {
  $baidu_site = 'http://www.baidu.com/baidu?word=site%3A' . $domain;
  $baidu_link = 'http://www.baidu.com/baidu?word=link%3A' . $domain;
  $baidu_domain = 'http://www.baidu.com/baidu?word=domain%3A' . $domain;
  getdetail($baidu_site, 'baidu_site', '相关网页', '篇,用时');
  getdetail($baidu_link, 'baidu_link', '相关网页', '篇,用时');
  getdetail($baidu_domain, 'baidu_domain', '相关网页', '篇,用时');
  }
 
  function googledetail($domain) {
  $google_site = 'http://www.google.cn/search?hl=zh-CN&q=site%3A' . $domain;
  $google_link = 'http://www.google.cn/search?hl=zh-CN&q=link%3A' . $domain;
  getdetail($google_site, 'google_site', '</b> 个结果,', ' 个。  (搜索用时');
  getdetail($google_link, 'google_link', '<font size=-1>约有 <b>', '</b> 项链接到 <b>');//102
  }
 
  function getdetail($url, $type, $wordf, $wordb) {
  $pagecontent = @file($url);
  $pagecontent = implode('', $pagecontent);
  $pagecontent = substr(strstr($pagecontent, $wordf), strlen($wordf));
  $pagecontent = substr_replace($pagecontent, '', strpos($pagecontent, $wordb));
  returndetail($pagecontent,$type);
  }
 
  function returndetail($content,$type) {
  global $seodetail;
  $seodetail[$type] = empty($content) ? 0 : $content;
  }
  ?>

(编辑:南平站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    热点阅读