程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php獲取google pr 值的代碼

php獲取google pr 值的代碼

編輯:關於PHP編程

本文章介紹一段最新的關於php獲取google pr 值的代碼,有需要的同學可以看看。

/*
*功能:對URL進行編碼
*參數說明:$web_url 網站URL,不包含"http://",例如php100.com
*來源:http://php100.com

*/

 代碼如下 復制代碼 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://php100.com

 

 代碼如下 復制代碼 */
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查詢 的最新接口。


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved