Google PageRank PR值在线查询php代码作者:协策网络-客服部 标签:网站制作 日期:2011年10月21日 类别:常见问题 |
||||
PR值全称为PageRank.PageRank(网页级别)是Google用于评测一个网页重要性的一种方法.在揉合了诸如Title标识和Keywords标识等所有其它因素之后.Google通过PageRank来调整结果.使那些更具重要性的网页在搜索结果中另网站排名获得提升.从而提高搜索结果的相关性和质量.PR值最高为10.一般PR值达到4.就算是一个不错的网站了.
PageRank是google搜索排名算法中的一个组成部分,级别从1到10级,10级为满分,PR值越高说明该网页在搜索排名中的地位越重要,也就是说,在其他条件相同的情况下,PR值高的网站在google搜索结果的排名中有优先权.
// Edit this to your website url:
define('GMAG', 0xE6359A60);
//unsigned shift right
function zeroFill($a, $b) { $z = hexdec(80000000);
if ($z & $a) {
return $a;
}
$a -= $b; $a -= $c; $a ^= (zeroFill($c,13));
return array($a,$b,$c);
function GCH($url, $length=null, $init=GMAG) {
if(is_null($length)) {
$length = sizeof($url);
$a = $b = 0x9E3779B9;
while($len >= 12) {
$c += ($url[$k+8] +($url[$k+9]<<8) +($url[$k+10]<<16)+($url[$k+11]<<24));
$mix = mix($a,$b,$c);
$k += 12;
$c += $length;
switch($len) {/* all the case statements fall through */
case 9 : $c+=($url[$k+8]<<8);
/* the first byte of c is reserved for the length */
case 4 : $a+=($url[$k+3]<<24);
case 3 : $a+=($url[$k+2]<<16);
/* case 0: nothing left to add */
$mix = mix($a,$b,$c);
//converts a string into an array of integers containing the numeric value of the char
for($i=0;$i<strlen($string);$i++) {
$result[$i] = ord($string{$i});
return $result;
function getPR($_url) {
$url = 'info:'.$_url;
$ch = GCH(strord($url));
$url='info:'.urlencode($_url);
$pr = file("http://www.google.com/search?client=navclient-auto&ch=6$ch&ie=UTF-8&oe=UTF-8&features=Rank&q=$url");
$pr_str = implode("", $pr);
return substr($pr_str,strrpos($pr_str, ":")+1);
echo "<br>The PR of $myWebsite is: ".getPR($myWebSite);
您可能感兴趣的文章推荐 |
||||
|