php判断网站收录情况
php判断网站收录情况
<?php //检测网页是否被百度收录 function checkBaiduIndex($url){ $url='http://www.baidu.com/s?wd='.$url; $curl=curl_init(); curl_setopt($curl,CURLOPT_URL,$url); curl_setopt($curl,CURLOPT_RETURNTRANSFER,1); $rs=curl_exec($curl); curl_close($curl); if(!strpos($rs,'抱歉,没有找到')){ return 1; //返回1则表示收录 }else{ return 0; //返回0表示没有收录 } } if(checkBaiduIndex('https://zhangzifan.com/tearsnow-update-note.html')==1){ echo "百度已经收录"; }else{ echo "暂未被收录"; }