程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php 關鍵字百度排名批量查

php 關鍵字百度排名批量查

編輯:關於PHP編程


<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>關鍵字百度排名批量查</title>
<base target="_blank" />
<meta http-equiv="x-ua-compatible" content="ie=emulateie7" />
<style type="text/css教程">
body{margin:0;padding:0;background:#fff;color:#000;font:12px 微軟雅黑, verdana, tahoma, lucida grande, arial, sans-serif;text-align:center;}
#wrapper{width:990px;margin:0 auto;line-height:20px;text-align:left;}
#header,#main,#footer{clear:both;float:left;margin:10px 0 0 0;width:100%;}
a,a:visited{color:#0196e3;text-decoration:none;}
form{margin:10px;}
.kinput{width:300px;margin:0 5px;padding:2px;text-align:left;border:1px solid #ccc;font-weight:bold;}
.kbutton{width:80px;margin:0 5px;padding:2px;height:20px;}
#kgrid{float:left;width:100%;}
.s_kw,.s_rank,.s_wt,.s_title,.s_cache,.s_feng,.s_baidu,.s_mu{float:left;height:30px;line-height:30px;overflow:hidden;text-align:left;border:1px solid #c2d5e3;}
.s_bar{clear:both;float:left;width:100%;height:30px;line-height:30px;text-align:center;}
.s_kw{clear:both;width:120px;}
.s_rank{width:30px;}
.s_wt{width:50px;color:#0e774a;}
.s_title{width:340px;}
.s_cache{width:80px;}
.s_feng{width:80px;}
.s_baidu{width:150px;}
.s_mu{width:120px;}
</style>
</head>

<body>
<div id="wrapper">
<?php教程
function tongji()
{
 $myhost = $_server['http_host'];
 if (preg_match("/(www.)?baiek.com/i", $myhost, $myout))
 {
  echo '<script language="網頁特效" type="text/javascript" src="http://js.users.51.la/4295418.js"></script>';
 }
}

function libxml_display_error($error)
{
 $return = "<br/>n";
 switch ($error->level)
 {
  case libxml_err_warning:
   $return .= "<b>warning $error->code</b>: ";
   break;
  case libxml_err_error:
   $return .= "<b>error $error->code</b>: ";
   break;
  case libxml_err_fatal:
   $return .= "<b>fatal error $error->code</b>: ";
   break;
 }
 $return .= trim($error->message);
 if ($error->file)
 {
  $return .= " in <b>$error->file</b>";
 }
 $return .= " on line <b>$error->line</b>n";
 return $return;
}

function libxml_display_errors()
{
 $errors = libxml_get_errors();
 foreach ($errors as $error)
 {
  print libxml_display_error($error);
 }
 libxml_clear_errors();
}

$kfname = '';
if (isset($_get['kf']))
{
 $kfname = trim($_get['kf']);
}
$version = '<script language="javascript" type="text/javascript" src="http://www.zhutiai.com/version.js"></script>';
echo <<< eoth
<div id="header">
 做企業站或認識企業站的朋友,請支持一下我的小站 <a href="http://www.198114.com/"><b>198114產品企業分類目錄</b></a>,多謝多謝!!
 <a href="http://www.zhutiai.com/" target="_self"><h1>關鍵字百度排名批量查詢(php網頁版) baiek.com</h1></a>
 <form method="get" target="_self">
  <input id="kf" name="kf" type="text" class="kinput" value="{$kfname}" />
  <input id="submitbtn" type="submit" class="kbutton" value="批量查詢" />
  &emsp;<a href="http://www.zhutiai.com/baiek.rar" target="_self"><b>點擊此處下載(更新於{$version})</b></a>
  &emsp;在線演示:<a href="http://www.zhutiai.com/?kf=kw1.xml" target="_self">演示1</a>&emsp;<a href="http://www.zhutiai.com/?kf=kw2.xml" target="_self">演示2</a>&emsp;<a href="http://www.zhutiai.com/?kf=kw3.xml" target="_self">演示3</a>
 </form>
</div>

eoth;
if (!file_exists($kfname) || !is_readable($kfname))
{
 tongji();
 exit('請輸入正確的關鍵字清單文件(xml格式,請參考<a href="http://www.zhutiai.com/readme.txt">readme</a>文件)!!');
}
libxml_use_internal_errors(true);
$doc = new domdocument();
$doc->load($kfname);
if (!$doc->schemavalidate('kw.xsd'))
{
 print '<b>關鍵字列表xml文件發現錯誤!</b>';
 libxml_display_errors();
 tongji();
 exit;
}

//由xml文件提取關鍵字列表與相應的域名
$kwlist = array(); $g = 1;
$kgroups教程 = $doc->getelementsbytagname("kgroup");
foreach ($kgroups as $kgroup)
{
 $kwlist[$g]['domain'] = trim($kgroup->getelementsbytagname("kdomain")->item(0)->nodevalue);
 $kwords = $kgroup->getelementsbytagname("kword");
 $w = 1;
 foreach ($kwords as $kword)
 {
  if ($kword->haschildnodes())
  {
   $kwlist[$g]['kword'][$w] = trim($kword->firstchild->nodevalue);
  }
  $w++;
 }
 $g++;
}
?>
<div id="main">
<?php
function get_dm_weight($h, $i)
{
 //$h表示搜索結果的url,$i表示結果排名
 $p = ceil($i / 10);  //搜索結果第幾頁
 
 $i_weight = array(1 => 52, 2 => 15, 3 => 10, 4 => 5, 5 => 5, 6 => 4, 7 => 1, 8 => 3, 9 => 2, 0 => 3);
 $h_str = preg_replace("/^.*?://(.*?)(#.*)?$/i", "$1$3", $h); //去除url中的協議(例如http)與#信息片段部分
 $h_arr = explode("?", $h_str, 2);
 $h0_arr = explode("/", $h_arr[0]);
 if ($h0_arr[count($h0_arr) - 1] == '')
 {
  $level_l = count($h0_arr) - 1;
 }
 else
 {
  $level_l = count($h0_arr);
 }
 if (isset($h_arr[1]))
 {
  if ($h_arr[1] != '')
  {
   $level_r = count(explode("&", $h_arr[1]));
  }
  else
  {
   $level_r = 0;
  }
 }
 else
 {
  $level_r = 0;
 }
 $dw = $i_weight[$i % 10] * pow(0.5, ($level_l + $level_r - 1)) * 9 / pow(10, $p);
 return number_format($dw, 1);;
}

function fetch_baidu($d, $k)
{
 $urlw = urlencode(iconv("utf-8","gbk//ignore",$k));
 $max_srh_page = 2; //百度搜索結果50條/頁,提取2頁,也就是只在前100條搜索結果中檢查排名,最大值可以設為16
 $baidu_ids = array(); //存儲百度系列子站點占據的排名位置
 $baidu_mus = array(); //存儲百度開放平台等優質站點占據的排名位置
 $isrank = 0; //$isrank = 1 當前域名下這個關鍵詞獲得排名; $isrank = 0 當前域名下這個關鍵詞沒有排名
 $all_count = 0; //測試變量,以確認匹配規則不會遺漏任何一條搜索結果
 $dm_weight = 0; //分析搜索結果頁面中頂級、次級、目錄、內頁的情況,粗略反映一個關鍵字的競爭激烈程度,非常不准,僅供參考
 for ($page_no = 1; $page_no <= $max_srh_page; $page_no++)
 {
  if ($page_no > 16) break;
  $fail_try = 1;
  $pn = ($page_no - 1) * 50;
  $url = "http://www.baidu.com/s?wd={$urlw}&pn={$pn}&rn=50";
  $snoopy = new snoopy;
//  $snoopy->proxy_host = "127.0.0.1"; //采集可選代理ip,以免頻繁抓百度反被百度咬
//  $snoopy->proxy_port = "80";   //proxy代理所用端口
  $snoopy->fetch($url);
  $contents = iconv("gbk","utf-8//ignore",$snoopy->results);
  unset($snoopy);
//  echo $contents;
  if (!preg_match("/<span>此內容系百度根據您的指令自動搜索的結果/i",$contents,$out))
  {
   if ($fail_try > 5)
   {
    continue;
   }
   else
   {
    $fail_try++;
    $page_no--;
    sleep(30);
    continue;
   }
  }
  if (!isset($ebaidu))
  {
   $ebaidu = array('lt' => 0, 'lb' => 0, 'r' => 0); //記錄百度推廣數量,分為左上、左下、右側
   if (preg_match_all("/<tr><td class="f ec_pp"><a id="awd+"/i", $contents, $out_lt))
   {
    $ebaidu['lt'] = count($out_lt[0]);
   }
   if (preg_match_all("/<table id="40d+".*?class="ec_mr15">/i", $contents, $out_lt))
   {
    $ebaidu['lt'] = count($out_lt[0]);
   }
   if (preg_match_all("/<table width="65%".*?class="ec_mr15">/i", $contents, $out_lb))
   {
    $ebaidu['lb'] = count($out_lb[0]);
   }
   if (preg_match_all("/<div id="bdfsd+" class="ec_pp".*?><a id=dfsd+/i", $contents, $out_r))
   {
    $ebaidu['r'] = count($out_r[0]);
   }
  }
  if (preg_match_all("/((<table cellpadding="0" cellspacing="0".*?id="(d+)" mu="(.*?)">)|(<table id="(d+)"  cellpadding="0" cellspacing="0" mu="(.*?)">))[s|s]*?((<a.*?href=".*?".*?>(.*?)</a>)|(<div id="app_.*?"></div>))/i", $contents, $out_mu))
  {
   foreach ($out_mu[0] as $om_key => $om_val)
   {
    $om_id1 = $out_mu[3][$om_key];
    $om_href1 = $out_mu[4][$om_key];
    $om_id2 = $out_mu[6][$om_key];
    $om_href2 = $out_mu[7][$om_key];
    $om_title = strip_tags($out_mu[10][$om_key]);
    $baidu_mus[] = $om_id1 . $om_id2;
    $dm_weight = $dm_weight + get_dm_weight($om_href1 . $om_href2, $om_id1 . $om_id2);
    if (preg_match("/://(w*?.)*?baidu.com//i", $om_href1 . $om_href2, $om_domain))
    {
     $baidu_ids[] = $om_id1 . $om_id2;
    }
    if (preg_match("/://(w*?.)*?{$d}//i", $om_href1 . $om_href2, $om_domain))
    {
     echo '<div style="clear:both"></div><span class="s_kw"><a href="http://www.baidu.com/s?wd=' . $urlw . '">' . $k . '</a></span><span class="s_rank">' . $om_id1 . $om_id2 . '</span><span class="s_wt"></span><span class="s_title"><a href="' . $om_href1 . $om_href2 . '">' . $om_title . '</a></span><span class="s_cache"></span>';
     $isrank = 1;
    }
   }
  }
  if (preg_match_all("/<table cellpadding="0" cellspacing="0" class="result" id="(d+)"><tr><td class=f><h3 class="t">(<font.*?</font>)?<a.*?href="(.*?)" target="_blank">(.*?)</a></h3><font size=-1>.*?<span class="g">.*? ((d{4}-d{1,2}-d{1,2})|(d+小時前)|(d+分鐘前)) .*?</span>.*?<br></font></td></tr></table>/i", $contents, $out_all))
  {
   foreach ($out_all[0] as $o_key => $o_val)
   {
    $o_id = $out_all[1][$o_key];
    $o_href = $out_all[3][$o_key];
    $o_title = strip_tags($out_all[4][$o_key]);
    $o_cache = $out_all[6][$o_key] . $out_all[7][$o_key] . $out_all[8][$o_key];
    $dm_weight = $dm_weight + get_dm_weight($o_href, $o_id);
    if (preg_match("/://(w*?.)*?baidu.com//i", $o_href, $o_domain))
    {
     $baidu_ids[] = $o_id;
    }
    if (preg_match("/://(w*?.)*?{$d}//i", $o_href, $o_domain))
    {
     echo '<div style="clear:both"></div><span class="s_kw"><a href="http://www.baidu.com/s?wd=' . $urlw . '">' . $k . '</a></span><span class="s_rank">' . $o_id . '</span><span class="s_wt">' . $dm_weight . '%</span><span class="s_title"><a href="' . $o_href . '">' . $o_title . '</a></span><span class="s_cache">' . $o_cache . '</span>';
     $isrank = 1;
    }
   }
  }
  //$all_count用來檢查上述正則匹配是否匹配到所有搜索結果,特別關注百度系列站點、百度開放平台以及百度應用等有別於普通搜索結果
  if (isset($out_mu[0])) $all_count = $all_count + count($out_mu[0]);
  if (isset($out_all[0])) $all_count = $all_count + count($out_all[0]);
//  echo '<br />總共找到' . $all_count . '個匹配<br />';
  if (!preg_match("/<a href="s?wd=.*?>下一頁</a>.*?</p>/i",$contents,$out))
  {
   break;
  }
 }
 if (count($baidu_mus) >= 1)
 {
  $bmus = implode(",", $baidu_mus);
 }
 else
 {
  $bmus = '';
 }
 if (count($baidu_ids) >= 1)
 {
  $bids = implode(",", $baidu_ids);
 }
 else
 {
  $bids = '';
 }
 if ($isrank == 1)
 {
  echo '<span class="s_feng">上' . $ebaidu['lt'] . '下' . $ebaidu['lb'] . '右' . $ebaidu['r'] . '</span><span class="s_baidu">' . $bids . '</span><span class="s_mu">' . $bmus . '</span>';
 }
 else
 {
  echo '<div style="clear:both"></div><span class="s_kw"><a href="http://www.baidu.com/s?wd=' . $urlw . '">' . $k . '</a></span><span class="s_rank">0</span><span class="s_wt">' . $dm_weight . '%</span><span class="s_title"></span><span class="s_cache"></span><span class="s_feng">上' . $ebaidu['lt'] . '下' . $ebaidu['lb'] . '右' . $ebaidu['r'] . '</span><span class="s_baidu">' . $bids . '</span><span class="s_mu">' . $bmus . '</span>';
 }
 unset($ebaidu);
}
//逐個域名與關鍵字采集百度排名信息並顯示
set_include_path(".");
include "snoopy.class.php";
set_time_limit(0);
ob_flush(); flush(); ob_end_clean(); ob_implicit_flush(1);
echo '<div id="kgrid">';
echo '<span class="s_kw">關鍵字</span><span class="s_rank">排名</span><span class="s_wt">競爭度</span><span class="s_title">網頁標題</span><span class="s_cache">百度快照</span><span class="s_feng">百度推廣數量</span><span class="s_baidu">百度占位</span><span class="s_mu">百度mu占位</span>';
foreach ($kwlist as $d_ks)
{
 $dm = $d_ks['domain'];
 echo '<div style="clear:both"></div><span class="s_bar">域名:' . $dm . '</span>';
 foreach ($d_ks['kword'] as $k)
 {
  fetch_baidu($dm, $k);
 }
}
echo '</div>';
?>
</div><!--div main end-->
</div><!--div wrap end-->
<?php
tongji();
?>
</body>
</html>


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved