最新用php获取谷歌PR值算法,附上php查询PR值代码示例

用php程序怎么获取谷歌PR值,已经有好几个人问我php查询PR值怎么实现的,于是现在就把php查询PR值法算法附上,大家可以直接使用下面的代码去测试php查询PR值。

本人的PR查询 工具 :http://yi1.com.cn/pr/ 就是使用这种方法。


/*
*功能:对URL进行编码
*参数说明:$web_url 网站URL,不包含"http://",例如yi1.com.cn

*来源:http://yi1.com.cn
*/
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);
}
/*
*功能:获取pagerank
*参数说明:$domain 网站域名,不包含"http://",

*来源:http://yi1.com.cn

*/
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 (!$pagerankreturn "0";else return $pagerank;
}

OK,用php获取谷歌PR值算法,其实就这么简单,自己去测试下吧。上次,谷歌的PR值查询接口更改,上面的代码已经修改使用了谷歌PR查询 的最新接口。

PR查询 工具 :http://yi1.com.cn/pr/

更多请请关注:http://yi1.com.cn

本人写的PR查询工具就是这样的,但是有一点要说明,PR有时候查询有点慢,有的人说为什么别人的站查询很快,其实,很多的PR查询站都做了各种缓存的,因为PR一般情况下,不会改变,除非谷歌PR更新,呵呵。

原文地址:https://www.cnblogs.com/jincon/p/2300942.html