当前位置:Gxlcms > PHP教程 > 查百度—百度网站权重SEO工具查询_PHP教程

查百度—百度网站权重SEO工具查询_PHP教程

时间:2021-07-01 10:21:17 帮助过:4人阅读

查百度—百度网站权重SEO工具查询

查百度—百度网站权重SEO工具查询







百度网站权重(SEO)查询工具





百度关键字查询系统的主要功能是:查询百度搜索引擎某个关键字的搜

索结果中是否包含您的网页,并且能够查询出您的的网页排在第几页.如果排名较差可以考虑适当的再忧化一下您的网站了。



近日将会推出站长和百度的更多实用功能,敬请关注!



//php处理代码

function get_microtime()
{
list($usec, $sec) = explode(" ",microtime());
return ((float)$usec + (float)$sec);
}

$time_start = get_microtime();
set_time_limit(0);
$kw=$_GET["kw"];
$url=$_GET["url"];
$depth=$_GET["depth"];
$next=1;$pn=0;$flag=0;$n=1;$ps教程=0;
$baseurl="http://www.baidu.com/s?";
$kw=str_replace("+","%2B",$kw);
$kw=str_replace(" ","%20",$kw);

if($depth==""||$depth<=0) $depth=10;
if($depth>76) $depth=76;

echo "百度网站关键字权重查询 -- ".$kw."";
echo "

百度网站关键字权重查询结果

";
//echo "
";
echo "
查询深度为:".$depth."
";

while($next==1)
{
$baidu_url=$baseurl."lm=0&si=&rn=10&tn=wangcong&ie=gb2312&ct=0&wd=".$kw."&pn=".$pn."&cl=3";
$str=file_get_contents($baidu_url);
$baidu_url=str_replace("%20","+",$baidu_url);

if(strpos($str,$url))
{
if($n==1) echo "在百度中查找关键字:'".$kw."',来自'".$url."'的结果有:

";
$pagenum=$pn/10+1;
echo "
第".$n."条结果, ";
echo "在百度搜索结果中排在第".$pagenum."页";
echo "
";
echo " 点此查看";
echo "

";
$flag=1;
$n=$n+1;
}

$pn=$pn+10;
$ps=$ps+1;
if($ps==$depth) $next=0;
if(!strpos($str,"下一页")) $next=0; //判断有没有下一页;
}

$time_end = get_microtime();
$time = $time_end - $time_start;
if($flag==0) echo "
在当前的深度条件下没有找到来自 ".$url." 的结果,您的忧化还有待进步,您可以尝试加大查询深度.

";

$n=$n-1;
echo "
统计信息:一共找了".$ps."页,找到".$n."条相关结果,耗时:".$time."秒.


";
?>


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/444970.htmlTechArticle查百度百度网站权重SEO工具查询 html title查百度百度网站权重SEO工具查询/title meta http-equiv=Content-Language content=zh-cn meta http-equiv=Content-Type co...

人气教程排行