本文實例講述了PHP簡單獲取網站百度搜索和搜狗搜索收錄量的方法。分享給大家供大家參考,具體如下:
獲取網站百度搜索和搜狗搜索的收錄量代碼,可以用於獲取網站域名在搜索引擎的收錄數量,一直想找這個API但沒找到,就在網上找了個例子,學習修改了下,可以正常獲取百度搜索和搜狗搜索的收錄量了;原理是獲取搜索引擎site:domain的結果數量,然後再抓取這個數量顯示出來。
function baidu($url){ $baidu="http://www.baidu.com/s?wd=site:".$url; $site=file_get_contents($baidu); ereg("該網站共有(.*)個網頁被百度收錄", $site,$count); $count=str_replace("該網站共有","",$count); $count=str_replace("個網頁被百度收錄","",$count); $count=str_replace(",","",$count); $count=str_replace(" ","",$count); return strip_tags($count[0]); } function sogou($url){ $sogou="http://www.sogou.com/web?query=site:".$url; $site=file_get_contents($sogou); ereg("找到約 (.*) 條結果", $site,$count); $count=str_replace("找到約","",$count); $count=str_replace("條結果","",$count); $count=str_replace(",","",$count); $count=str_replace(" ","",$count); return strip_tags($count[0]); } ?> www.jb51.net 百度收錄<?php echo baidu('www.jb51.net');?>條<br> www.jb51.net 搜狗收錄<?php echo sogou('www.jb51.net');?>條
運行效果如下圖所示:
注意:此處的文件編碼需要使用utf-8格式。
更多關於PHP相關內容感興趣的讀者可查看本站專題:《php正則表達式用法總結》、《php curl用法總結》、《PHP數組(Array)操作技巧大全》、《php排序算法總結》、《PHP常用遍歷算法與技巧總結》、《PHP數據結構與算法教程》、《php程序設計算法總結》、《PHP數學運算技巧總結》、《PHP運算與運算符用法總結》、《php字符串(string)用法總結》及《php常見數據庫操作技巧匯總》
希望本文所述對大家PHP程序設計有所幫助。