<?php /* * 检测百度是否收录网页 curl模式 * @ param string $url传入的url * return int (1 收录 0 不收录) */ function checkBaidu($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); $arr=parse_url($url); if(strpos($arr['query'],'http://')){ $arr['query']=str_replace('http://','',str_replace('wd=','',$arr['query'])); }else{ $arr['query']=str_replace('wd=','',$arr['query']); } if(strpos($arr['query'],'?')){ $str=strstr($arr['query'],'?'); $arr['query']=str_replace($str,'',$arr['query']); } if(strpos($arr['query'],'/')){ $narr=explode('/',$arr['query']); $arr['query']=$narr[0]; } if(strpos($rs,'<b>'.$arr['query'].'</b>')){ return 1; }else{ return 0; } } echo checkBaidu('http://www.bianceng.cn/'); ?>
另一种是最蛋疼的方法 如图
可以通过 preg_match 函数检测 是否有 “抱歉,没有找到与” 这个文 字来判断是否收录
function checkbaidu($key){ $url="http://www.baidu.com/s?wd=".$key; $html = @file_get_contents($url); $html = iconv('utf-8','gbk//TRANSLIT',$html); if(preg_match('/(抱歉,没有找到与)/', $html)) { return 0; } else { return 1; } }
查看本栏目更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/webkf/PHP/
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索html
, return
, www
, 检测
, file_get_contents
, preg_match
php百度收录
php curl获取网页内容、php curl抓取网页数据、php curl抓取网页内容、php curl 访问网页、php curl 抓取网页,以便于您获取更多的相关知识。
时间: 2024-10-31 00:41:46