现在做站会有些站长把收录数量显示在网站底部,一来自己可以知道网站收录数量多少,二来申请友链的伙伴们也知道你网站有多少收录,不过大多数人都是用别人的API接口来实现,假如别人的API接口失效了,自己网站就多了个404的JS文件,这样会导致网站打开速度慢了一点点!这里直接把接口源码分享了!
在网站新建一个php文件,把下面的代码复制进去
查询方法:你网站域名/文件.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("\r\n", "\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;}?>
然后直接在要显示的地方添加以下代码即可(注意修改API路径):
隐藏内容
评论可见
前往评论
夕阳博客的免费API调用平台不错:https://v1.21lhz.cn,大家可以用他里面的百度收录量查询API,但也要注意将API中网址的www去掉。