PHP查询网站的PR值_PHP教程
http://toolbarqueries.google.com.hk/tbr?client=navclient-auto&features=Rank:&q=info:phpddt.com&ch=8fabc62ea
/*
*功能:对URL进行编码
*参数说明:$web_url 网站URL,不包含"http://"
*/
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 }
return sprintf("8%x", $Result);
}
/*
*功能:根据google提供的pr查询接口获取pagerank
*参数说明:$domain 网站域名,不包含"http://"
*/
function pagerank($domain)
{
$StartURL = "http://toolbarqueries.google.com/tbr?client=navclient-auto&features=Rank:&q=info:";
$GoogleURL = $StartURL.$domain. '&ch='.HashURL($domain);
echo $GoogleURL.'
';
$fcontents = file_get_contents("$GoogleURL");
$pagerank = substr($fcontents,9);
if (!$pagerank) return "0";else return $pagerank;
}
echo pagerank("phpddt.com");
?>
上一篇: 总结js中鼠标事件
推荐阅读
-
php函数指定默认值方法的小例子_PHP教程
-
简单的php查询数据库语句实例代码_PHP教程
-
php的exec在linux中返回值不能为负数的问题_PHP教程
-
用PHP制作静态网站的模板框架(四)_PHP教程
-
php SPL DirectoryIterator 获取网站目录列表的方法_PHP教程
-
PHP,Mysql-根据一个给定经纬度的点,进行附近地点查询–合理利用算法,效率提高2125倍,mysql-2125倍_PHP教程
-
关于Apache默认编码错误,导致网站乱码的解决方案,apache编码_PHP教程
-
9条建议让你的WordPress网站更快运行如飞,9条wordpress_PHP教程
-
大型网站架构不得不考虑的10个问题_PHP教程
-
jquery获取多个checkbox的值异步提交给php的方法,jquerycheckbox_PHP教程