Home > Article > Backend Development > pr The latest algorithm for obtaining Google PR value using php, attached with php query PR value code example
Copy the code The code is as follows:
/*
*Function: Encode the URL
*Parameter description: $web_url Website URL, does not contain "http://", such as jb51.net
*/
function HashURL($url){
$SEED = "Mining PageRank is AGAINST GOOGLE'S TERMS OF SERVICE. Yes, I'm talking to you, scammer.";
$Result = 0x01020345;
for ($i=0; $i< ;strlen($url); $i++)
{
$Result ^= ord($SEED{$i%87}) ^ ord($url{$i});
$Result = (($Result >> ; 23) & 0x1FF) | $Result << 9;
}
return sprintf("8%x", $Result);
}
/*
*Function: Get pagerank
*Parameter description: $domain website Domain name, excluding "http://",
*/
function pagerank($domain)
{
$StartURL = "http://toolbarqueries.google.com/tbr?client=navclient-auto&features=Rank:&q= info:";
// $StartURL = "http://www.google.com/search?client=navclient-auto&features=Rank:&q=info:";
$GoogleURL = $StartURL.$domain. '&ch= '.HashURL($domain);
$fcontents = file_get_contents("$GoogleURL");
$pagerank = substr($fcontents,9);
if (!$pagerank) return "0";else return $pagerank;
}
The above introduces the latest algorithm for obtaining Google PR value using PHP. Attached is the PHP query PR value code example, including PR content. I hope it will be helpful to friends who are interested in PHP tutorials.