欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php获取google pr 值的代码

程序员文章站 2022-04-21 20:34:32
...
功能:对URL进行编码

参数说明:$web_url 网站URL,不包含"http://",例如phprm.com

php获取google pr 值的代码如下:

> 23) & 0x1FF) | $Result 

功能:

获取pagerank参数说明:

$domain网站域名,不包含"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;
}

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