首页 > 开发 > PHP > 正文

PHP判断IP并跳转到相应城市分站的方法

2024-05-04 23:33:22
字体:
来源:转载
供稿:网友

这篇文章主要介绍了PHP判断IP并转跳到相应城市分站的方法,实例分析了php解析URL及跳转的技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了PHP判断IP并转跳到相应城市分站的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. <?php  
  2. class QQWry{  
  3. var $StartIP=0;  
  4. var $EndIP=0;  
  5. var $Country='';  
  6. var $Local='';  
  7. var $CountryFlag=0; 
  8. // 标识 Country位置  
  9. // 0x01,随后3字节为Country偏移,没有Local  
  10. // 0x02,随后3字节为Country偏移,接着是Local  
  11. // 其他,Country,Local,Local有类似的压缩。可能多重引用。  
  12. var $fp;  
  13. var $FirstStartIp=0;  
  14. var $LastStartIp=0;  
  15. var $EndIpOff=0 ;  
  16. function getStartIp($RecNo){  
  17. $offset=$this->FirstStartIp+$RecNo * 7 ;  
  18. @fseek($this->fp,$offset,SEEK_SET) ;  
  19. $buf=fread($this->fp ,7) ;  
  20. $this->EndIpOff=ord($buf[4])+(ord($buf[5])*256)+(ord($buf[6])*256*256); 
  21. $this->StartIp=ord($buf[0])+(ord($buf[1])*256)+(ord($buf[2])*256*256)+(ord($buf[3])*256*256*256); 
  22. return $this->StartIp; 
  23. function getEndIp(){  
  24. @fseek ( $this->fp , $this->EndIpOff , SEEK_SET ) ;  
  25. $buf=fread ( $this->fp , 5 ) ;  
  26. $this->EndIp=ord($buf[0]) + (ord($buf[1])*256) + (ord($buf[2])*256*256) + (ord($buf[3])*256*256*256); 
  27. $this->CountryFlag=ord ( $buf[4] ) ;  
  28. return $this->EndIp ;  
  29. }  
  30. function getCountry(){  
  31. switch ( $this->CountryFlag ) {  
  32. case 1:  
  33. case 2:  
  34. $this->Country=$this->getFlagStr ( $this->EndIpOff+4) ;  
  35. //echo sprintf('EndIpOffset=(%x)',$this->EndIpOff );  
  36. $this->Local=( 1 == $this->CountryFlag )? '' : $this->getFlagStr ( $this->EndIpOff+8); 
  37. break ;  
  38. default :  
  39. $this->Country=$this->getFlagStr ($this->EndIpOff+4);  
  40. $this->Local=$this->getFlagStr ( ftell ( $this->fp ));  
  41. }  
  42. }  
  43. function getFlagStr ($offset){  
  44. $flag=0 ;  
  45. while(1){  
  46. @fseek($this->fp ,$offset,SEEK_SET) ;  
  47. $flag=ord(fgetc($this->fp ) ) ;  
  48. if ( $flag == 1 || $flag == 2 ) {  
  49. $buf=fread ($this->fp , 3 ) ;  
  50. if ($flag==2){  
  51. $this->CountryFlag=2;  
  52. $this->EndIpOff=$offset - 4 ;  
  53. }  
  54. $offset=ord($buf[0]) + (ord($buf[1])*256) + (ord($buf[2])* 256*256);  
  55. }  
  56. else{  
  57. break ;  
  58. }  
  59. }  
  60. if($offset<12)  
  61. return '';  
  62. @fseek($this->fp , $offset , SEEK_SET ) ;  
  63.  
  64. return $this->getStr();  
  65. }  
  66. function getStr ( )  
  67. {  
  68. $str='' ;  
  69. while ( 1 ) {  
  70. $c=fgetc ( $this->fp ) ;  
  71. //echo "$cn" ;  
  72. if(ord($c[0])== 0 )  
  73. break ;  
  74. $str.= $c ;  
  75. }  
  76. //echo "$str n";  
  77. return $str ;  
  78. }  
  79. function qqwry ($dotip='') {  
  80. if( !is_string($dotip) || $dotip==''){return;}  
  81. if(preg_match("/^127/",$dotip)){$this->Country="本地网络";return ;}  
  82. elseif(preg_match("/^192/",$dotip)) {$this->Country="局域网";return ;}  
  83. $nRet;  
  84. $ip=$this->IpToInt ( $dotip );  
  85. $this->fp= fopen(__QQWRY__, "rb");  
  86. if ($this->fp == NULL) {  
  87. $szLocal"OpenFileError";  
  88. return 1;  
  89. @fseek ( $this->fp , 0 , SEEK_SET ); 
  90. $buf=fread ( $this->fp , 8 ); 
  91. $this->FirstStartIp=ord($buf[0]) + (ord($buf[1])*256) + (ord($buf[2])*256*256) + (ord($buf[3])*256*256*256); 
  92. $this->LastStartIp=ord($buf[4]) + (ord($buf[5])*256) + (ord($buf[6])*256*256) + (ord($buf[7])*256*256*256); 
  93. $RecordCountfloor(($this->LastStartIp - $this->FirstStartIp) / 7); 
  94. if ($RecordCount <= 1){  
  95. $this->Country="FileDataError";  
  96. fclose($this->fp) ;  
  97. return 2 ;  
  98. }  
  99. $RangB= 0;  
  100. $RangE$RecordCount;  
  101. // Match ...  
  102. while ($RangB < $RangE-1)  
  103. {  
  104. $RecNofloor(($RangB + $RangE) / 2); 
  105. $this->getStartIp ( $RecNo ) ;  
  106. if ( $ip == $this->StartIp )  
  107. {  
  108. $RangB=$RecNo ;  
  109. break ;  
  110. }  
  111. if ($ip>$this->StartIp)  
  112. $RangB$RecNo;  
  113. else 
  114. $RangE$RecNo;  
  115. }  
  116. $this->getStartIp ( $RangB ) ;  
  117. $this->getEndIp ( ) ;  
  118. if ( ( $this->StartIp <= $ip ) && ( $this->EndIp >= $ip ) ){  
  119. $nRet=0 ;  
  120. $this->getCountry ( ) ;  
  121. //这样不太好..............所以..........  
  122. $this->Local=str_replace("area error""",$this->Local);  
  123. }  
  124. else{  
  125. $nRet=3 ;  
  126. $this->Country='未知' ;  
  127. $this->Local='' ;  
  128. }  
  129. fclose ( $this->fp );  
  130. $this->Country=preg_replace("/(CZ88.NET)|(纯真网络)/","局域网/未知",$this->Country); 
  131. $this->Local=preg_replace("/(CZ88.NET)|(纯真网络)/","局域网/未知",$this->Local);  
  132. //////////////看看 $nRet在上面的值是什么0和3,于是将下面的行注释掉  
  133. return $nRet ;  
  134. //return "$this->Country $this->Local";#如此直接返回位置和国家便可以了  
  135. }  
  136. function IpToInt($Ip) {  
  137. $array=explode('.',$Ip);  
  138. $Int=($array[0] * 256*256*256) + ($array[1]*256*256) + ($array[2]*256) + $array[3]; 
  139. return $Int;  
  140. }  
  141. }  
  142. ?> 

实例演示如下:

 

 
  1. $QQWry=new QQWry; 
  2. $QQWry->QQWry("60.31.95.255"); 
  3. $country = $QQWry->Country; 
  4. echo $QQWry->Country.",".$QQWry->Local; 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表