PHP百度收录数量查询API源码

现在做站会有些站长把收录数量显示在网站底部,一来自己可以知道网站收录数量多少,二来申请友链的伙伴们也知道你网站有多少收录,不过大多数人都是用别人的API接口来实现,假如别人的API接口失效了,自己网站就多了个404的JS文件,这样会导致网站打开速度慢了一点点!这里直接把接口源码分享了!

网站新建一个php文件,把下面的代码复制进去

API接口的源码查询方法:网站域名/文件.php?domain=查询域名

<?php  /*  Plugin Name: XY-百度收录量  Description: XY-根据域名返回百度收录量  */  $domain = (isset($_GET['domain']))?$_GET['domain']:$_POST['domain'];  if(empty($domain))  echo '查询域名不能为空';    $count = baiduSL ($domain);    if(!isset($count))  showjson(array('code'=>200502,'msg'=>'查询失败,请重试!'));  if(!$count)  $count = 0;  $result=array(      'code'=>1,      'domain'=>$domain,      'data'=>$count  );  print_r(json_encode($result));    unset($domain,$result,$ch);  function baiduSL ($domain) {       $baidu='https://www.baidu.com/s?ie=utf-8&tn=baidu&wd=site%3A'.$domain;        $bdsite=BD_curl($baidu);        $bdsite = str_replace(array("rn", "r", "n", '    '), '', $bdsite);        if (!$count) preg_match('/找到相关结果数约(.*?)个/i',$bdsite,$count);       $baiduSL=strip_tags($count[1]);        unset($count);       return $baiduSL;  }  function BD_curl($url){      $ch = curl_init();      curl_setopt($ch, CURLOPT_URL, $url);      curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1");      curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);      $ret = curl_exec($ch);      curl_close($ch);      return $ret;  }  ?>

© 版权声明
THE END
喜欢就支持一下吧
点赞10 分享
评论 抢沙发