最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php获取google pr 值的代码
时间:2022-06-24 18:14:54 编辑:袖梨 来源:一聚教程网
/*
*功能:对URL进行编码
*参数说明:$web_url 网站URL,不包含"http://",例如111com.net
*来源:http://111com.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 $Result ^= ord($SEED{$i%87}) ^ ord($url{$i}); $Result = (($Result >> 23) & 0x1FF) | $Result << 9; } return sprintf("8%x", $Result); } |
/*
*功能:获取pagerank
*参数说明:$domain 网站域名,不包含"http://",
*来源:http://111com.net
代码如下 | 复制代码 |
*/ 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查询 的最新接口。
相关文章
- 王者荣耀侦探能力大测试攻略 王者荣耀侦探能力大测试怎么过 11-22
- 无期迷途主线前瞻兑换码是什么 11-22
- 原神欧洛伦怎么培养 11-22
- 炉石传说网易云音乐联动怎么玩 11-22
- 永劫无间手游确幸转盘怎么样 11-22
- 无期迷途主线前瞻兑换码是什么 无期迷途主线前瞻直播兑换码介绍 11-22