虽然开发人员和设计人员可以就不同搜索引擎优化策略的重要性争论不休,但一个根本无法争论的指标是网站的 Google PageRank,或者它在增加网站流量方面的重要性。实现更好的 PageRank 是重新设计此博客时的一个考虑因素。我们可以在另一篇文章中讨论如何获得更好的 PageRank——这篇文章将重点介绍如何使用我创建的一个小 PHP 类检索页面的 Google PageRank。
PHP
此类中的基函数由 Jamie Scott 创建——基函数的所有功劳都归于他。我只是将功能放入 PHP 类格式以便于使用,并更新了代码以使其更加透明。就 PHP 类而言,这个非常小:
// Declare the class
class GooglePageRankChecker {
// Track the instance
private static $instance;
// Constructor
function getRank($page) {
// Create the instance, if one isn't created yet
if(!isset(self::$instance)) {
self::$instance = new self();
}
// Return the result
return self::$instance->check($page);
}
// Convert string to a number
function stringToNumber($string,$check,$magic) {
$int32 = 4294967296; // 2^32
$length = strlen($string);
for ($i = 0; $i < $length; $i++) {
$check *= $magic;
//If the float is beyond the boundaries of integer (usually +/- 2.15e+9 = 2^31),
// the result of converting to integer is undefined
// refer to http://www.php.net/manual/en/language.types.integer.php
if($check >= $int32) {
$check = ($check - $int32 * (int) ($check / $int32));
//if the check less than -2^31
$check = ($check < -($int32 / 2)) ? ($check + $int32) : $check;
}
$check += ord($string{$i});
}
return $check;
}
// Create a url hash
function createHash($string) {
$check1 = $this->stringToNumber($string, 0x1505, 0x21);
$check2 = $this->stringToNumber($string, 0, 0x1003F);
$factor = 4;
$halfFactor = $factor/2;
$check1 >>= $halfFactor;
$check1 = (($check1 >> $factor) & 0x3FFFFC0 ) | ($check1 & 0x3F);
$check1 = (($check1 >> $factor) & 0x3FFC00 ) | ($check1 & 0x3FF);
$check1 = (($check1 >> $factor) & 0x3C000 ) | ($check1 & 0x3FFF);
$calc1 = (((($check1 & 0x3C0) << $factor) | ($check1 & 0x3C)) << $halfFactor ) | ($check2 & 0xF0F );
$calc2 = (((($check1 & 0xFFFFC000) << $factor) | ($check1 & 0x3C00)) << 0xA) | ($check2 & 0xF0F0000 );
return ($calc1 | $calc2);
}
// Create checksum for hash
function checkHash($hashNumber)
{
$check = 0;
$flag = 0;
$hashString = sprintf('%u', $hashNumber) ;
$length = strlen($hashString);
for ($i = $length - 1; $i >= 0; $i --) {
$r = $hashString{$i};
if(1 === ($flag % 2)) {
$r += $r;
$r = (int)($r / 10) + ($r % 10);
}
$check += $r;
$flag ++;
}
$check %= 10;
if(0 !== $check) {
$check = 10 - $check;
if(1 === ($flag % 2) ) {
if(1 === ($check % 2)) {
$check += 9;
}
$check >>= 1;
}
}
return '7'.$check.$hashString;
}
function check($page) {
// Open a socket to the toolbarqueries address, used by Google Toolbar
$socket = fsockopen("toolbarqueries.google.com", 80, $errno, $errstr, 30);
// If a connection can be established
if($socket) {
// Prep socket headers
$out = "GET /search?client=navclient-auto&ch=".$this->checkHash($this->createHash($page))."&features=Rank&q=info:".$page."#=100&filter=0 HTTP/1.1\r\n";
$out .= "Host: toolbarqueries.google.com\r\n";
$out .= "User-Agent: Mozilla/4.0 (compatible; GoogleToolbar 2.0.114-big; Windows XP 5.1)\r\n";
$out .= "Connection: Close\r\n\r\n";
// Write settings to the socket
fwrite($socket, $out);
// When a response is received...
$result = "";
while(!feof($socket)) {
$data = fgets($socket, 128);
$pos = strpos($data, "Rank_");
if($pos !== false){
$pagerank = substr($data, $pos + 9);
$result += $pagerank;
}
}
// Close the connection
fclose($socket);
// Return the rank!
return $result;
}
}
}
createHash 和 checkHash 方法执行深层数学运算。一旦这些都被排除在外,check 方法就会连接到 Google 的工具栏服务器,通过 User-Agent 标头将自己伪装成工具栏,以获取页面的 PageRank。使用单例模式是因为创建单个实例并不重要:
$rank = GooglePageRankChecker::getRank("davidwalsh.name"); // returns "5"
返回的数字代表所提供 URL 的 PageRank!这个 PHP 类可以单独使用,但我已经创建了一个 MooTools 驱动的脚本来通过一些简单的 AJAX 检索地址的 PageRank。
MooTools JavaScript
这个 MooTools 快速内联 MooTools 脚本响应按钮点击,对运行上面提供的类的 PHP 脚本进行 AJAX 调用:
// When the DOM is ready
window.addEvent("domready",function() {
// When the form is submitted...
var form = document.id("rankForm"), request, display, domain;
form.addEvent("submit",function(e) {
// Stop the event
if(e) e.stop();
// Create request, if not already created
if(!request) {
domain = document.id("domain");
display = document.id("rankerDisplay");
request = new Request({
url: "pagerank-checker.php",
method: "post",
onComplete: function(response) {
display.setStyle("display","block").set("text","Page rank for " + domainValue + " is: " + response);
}
});
}
// Get the value fo the URL
domainValue = domain.get("value");
// Send the request
request.send({ data: { domain: domainValue } });
});
});
使用像这样的 JavaScript 代码片段,您可以使用您选择的框架轻松添加以 JavaScript 为前端的 Google PageRank 检查器。
Jamie Scott 在创建基本函数以使用 PHP 检索页面的 Google PageRank 方面的出色工作。希望我的课程能使 PageRank 代码更具可移植性和可识别性。
