Heim  >  Artikel  >  Backend-Entwicklung  >  php如何判断网页是否被百度收录了?

php如何判断网页是否被百度收录了?

WBOY
WBOYOriginal
2016-06-20 13:03:251091Durchsuche

运用php的curl来对网站是否被百度收录做出了判断, 检测百度是否收录网页

<?php
/*
* 检测百度是否收录网页 curl模式
* @ param string $url传入的url
* return int (1 收录 0 不收录)
*/
function checkBaidu($url){
$url=&#39;http://www.baidu.com/s?wd=&#39;.$url;
$curl=curl_init();
curl_setopt($curl,CURLOPT_URL,$url);
curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
$rs=curl_exec($curl);
curl_close($curl);
$arr=parse_url($url);
if(strpos($arr[&#39;query&#39;],&#39;http://&#39;)){
$arr[&#39;query&#39;]=str_replace(&#39;http://&#39;,&#39;&#39;,str_replace(&#39;wd=&#39;,&#39;&#39;,$arr[&#39;query&#39;]));
}else{
$arr[&#39;query&#39;]=str_replace(&#39;wd=&#39;,&#39;&#39;,$arr[&#39;query&#39;]);
}
if(strpos($arr[&#39;query&#39;],&#39;?&#39;)){
$str=strstr($arr[&#39;query&#39;],&#39;?&#39;);
$arr[&#39;query&#39;]=str_replace($str,&#39;&#39;,$arr[&#39;query&#39;]);
}
if(strpos($arr[&#39;query&#39;],&#39;/&#39;)){
$narr=explode(&#39;/&#39;,$arr[&#39;query&#39;]);
$arr[&#39;query&#39;]=$narr[0];
}
if(strpos($rs,&#39;<b>&#39;.$arr[&#39;query&#39;].&#39;</b>&#39;)){
return 1;
}else{
return 0;
} 
}
echo checkBaidu(&#39;http://www.scutepp.com/&#39;);
?>

 


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn