PHP查询网站PR值的实现代码

WBOY
发布: 2016-07-25 08:57:48
原创
1050 人浏览过
  1. /*
  2. * 功能:对URL进行编码
  3. * 参数说明:$web_url 网站URL,不包含"http://"
  4. * site: bbs.it-home.org
  5. */
  6. function HashURL($url)
  7. {
  8. $SEED = "Mining PageRank is AGAINST GOOGLE'S TERMS OF SERVICE. Yes, I'm talking to you, scammer.";
  9. $Result = 0x01020345;
  10. for ($i=0; $i {
  11. $Result ^= ord($SEED{$i%87}) ^ ord($url{$i});
  12. $Result = (($Result >> 23) & 0x1FF) | $Result }
  13. return sprintf("8%x", $Result);
  14. }
  15. /*
  16. *功能:根据google提供的pr查询接口获取pagerank
  17. *参数说明:$domain 网站域名,不包含"http://"
  18. */
  19. function pagerank($domain)
  20. {
  21. $StartURL = "http://toolbarqueries.google.com/tbr?client=navclient-auto&features=Rank:&q=info:";
  22. $GoogleURL = $StartURL.$domain. '&ch='.HashURL($domain);
  23. echo $GoogleURL.'
    ';
  24. $fcontents = file_get_contents("$GoogleURL");
  25. $pagerank = substr($fcontents,9);
  26. if (!$pagerank) return "0";else return $pagerank;
  27. }
  28. echo pagerank("phpddt.com");
  29. ?>
复制代码


来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板