|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
理解网站这一概念之后不难看出,任何网站都是由网页组成的,也就是说想完成网站,必须先学会做网页,因此必须要掌握了HTML,才能为今后制作网站打下基础。比来一向在忙友链,也伺机进修一下PR值相干常识,试着用PHP完成PR查询。
GooglePR值是甚么在此不做过量的先容,复杂的说就是你的PR值越高代表的你网站越主要越受接待,不外这个值最高为10,上面这个代码能够取得一个网站的PR值。
用PHP剧本程序猎取网站的PR值的次要代码以下:
程序以下:<?php
$googlehost="toolbarqueries.google.com";
$googleua="Mozilla/5.0(Windows;U;WindowsNT5.1;en-US;rv:1.8.0.6)Gecko/20060728Firefox/1.5";
echogetpr
//convertastringtoa32-bitinteger
functionStrToNum($Str,$Check,$Magic){
$Int32Unit=4294967296;//2^32
$length=strlen($Str);
for($i=0;$i<$length;$i++){
$Check*=$Magic;
//Ifthefloatisbeyondtheboundariesofinteger(usually+/-2.15e+9=2^31),
//theresultofconvertingtointegerisundefined
//refertophp.net/manual/en/language.types.integer.php
if($Check>=$Int32Unit){
$Check=($Check-$Int32Unit*(int)($Check/$Int32Unit));
//ifthechecklessthan-2^31
$Check=($Check<-2147483648)?($Check+$Int32Unit):$Check;
}
$Check+=ord($Str{$i});
}
return$Check;
}
//genearateahashforaurl
functionHashURL($String){
$Check1=StrToNum($String,0 |
|