Home > php教程 > php手册 > 最新 google pr值查询 接口 php版 示例

最新 google pr值查询 接口 php版 示例

WBOY
Release: 2016-06-06 20:09:55
Original
1288 people have browsed it

?php/*php获取网站谷歌pr值完整示例*/function app_hash_url($url){$seed="Mining PageRank is AGAINST GOOGLE'S TERMS OF SERVICE.";$result=0x01020345;for($i=0;$istrlen($url);$i++){$result^=ord($seed{$i%87})^ord($url{$i});$result=(($result23)0x1F

<?php /*php获取网站谷歌pr值完整示例*/
function app_hash_url($url){
	$seed="Mining PageRank is AGAINST GOOGLE'S TERMS OF SERVICE.";
	$result=0x01020345;
	for($i=0;$i<strlen($url);$i++){
		$result^=ord($seed{$i%87})^ord($url{$i});
		$result=(($result>>23)&0x1FF)|$result
Copy after login

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template