当前位置:首页 > PHP教程 > php应用 > 列表

php查询ip所在地的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-02 21:28:02 浏览: 评论:0 

这篇文章主要介绍了php查询ip所在地的方法,涉及对纯真ip数据库的实用,是非常常见的实用技巧,需要的朋友可以参考下,本文实例讲述了php查询ip所在地的方法。分享给大家供大家参考。

具体实现方法如下:

  1. /** 
  2. *@ date         2010.12.21 
  3. 注:文件头 [第一条索引的偏移量 (4byte)] + [最后一条索引的偏移地址 (4byte)]     8字节 
  4. 记录区 [结束ip (4byte)] + [地区1] + [地区2]                                4字节+不定长 
  5. 索引区 [开始ip (4byte)] + [指向记录区的偏移地址 (3byte)]                   7字节 
  6. */ 
  7. class iplocation{ 
  8. var $fp
  9. var $firstip;  //第一条ip索引的偏移地址 
  10. var $lastip;   //最后一条ip索引的偏移地址 
  11. var $totalip;  //总ip数 
  12. /* 
  13. |---------------------------------------------------------------------------- 
  14. | 构造函数,初始化一些变量 
  15. |---------------------------------------------------------------------------- 
  16. | 
  17. */ 
  18. function iplocation($datfile = "qqwry.dat"){ 
  19. $this->fp=fopen($datfile,'rb')or die("qqwry.dat不存在,请去网上 下载纯真ip数据 库, 'qqwry.dat' 放到当前目录下");   //二制方式打开 
  20. $this->firstip = $this->get4b(); //第一条ip索引的绝对偏移地址 
  21. $this->lastip = $this->get4b();  //最后一条ip索引的绝对偏移地址 
  22. $this->totalip =($this->lastip - $this->firstip)/7 ; //ip总数 索引区是定长的7个字节,在此要除以7, 
  23. register_shutdown_function(array($this,"closefp"));  //为了兼容php5以下版本,本类没有用析构函数,自动关闭ip库. 
  24. /* 
  25. |---------------------------------------------------------------------------- 
  26. | 关闭ip库 
  27. |---------------------------------------------------------------------------- 
  28. | 
  29. */ 
  30. function closefp(){ 
  31. fclose($this->fp); 
  32. /* 
  33. |---------------------------------------------------------------------------- 
  34. | 读取4个字节并将解压成long的长模式 
  35. |---------------------------------------------------------------------------- 
  36. | 
  37. */ 
  38. function get4b(){ 
  39. $str=unpack("v",fread($this->fp,4)); 
  40. return $str[1]; 
  41. /* 
  42. |---------------------------------------------------------------------------- 
  43. | 读取重定向了的偏移地址 
  44. |---------------------------------------------------------------------------- 
  45. | 
  46. */ 
  47. function getoffset(){ 
  48. $str=unpack("v",fread($this->fp,3).chr(0)); 
  49. return $str[1]; 
  50. /* 
  51. |---------------------------------------------------------------------------- 
  52. | 读取ip的详细地址信息 
  53. |---------------------------------------------------------------------------- 
  54. | 
  55. */ 
  56. function getstr(){ 
  57. $split=fread($this->fp,1); 
  58. while (ord($split)!=0) { 
  59. $str .=$split
  60. $split=fread($this->fp,1); 
  61. return $str
  62. /* 
  63. |---------------------------------------------------------------------------- 
  64. | 将ip通过ip2long转成ipv4的互联网地址,再将他压缩成big-endian字节序 ,用来和索引区内的ip地址做比较 
  65. |---------------------------------------------------------------------------- 
  66. | 
  67. */ 
  68. function iptoint($ip){ 
  69. return pack("n",intval(ip2long($ip))); 
  70. /* 
  71. |---------------------------------------------------------------------------- 
  72. | 获取地址信息 
  73. |---------------------------------------------------------------------------- 
  74. | 
  75. */ 
  76. function readaddress(){ 
  77. $now_offset=ftell($this->fp); //得到当前的指针位址 
  78. $flag=$this->getflag(); 
  79. switch (ord($flag)){ 
  80. case 0: 
  81. $address=""
  82. break
  83. case 1: 
  84. case 2: 
  85. fseek($this->fp,$this->getoffset()); 
  86. $address=$this->getstr(); 
  87. break
  88. default
  89. fseek($this->fp,$now_offset); 
  90. $address=$this->getstr(); 
  91. break
  92. return $address
  93. /* 
  94. |---------------------------------------------------------------------------- 
  95. | 获取标志1或2   用来确定地址是否重定向了 
  96. |---------------------------------------------------------------------------- 
  97. | 
  98. */ 
  99. function getflag(){ 
  100. return fread($this->fp,1); 
  101. /* 
  102. |---------------------------------------------------------------------------- 
  103. | 用二分查找法在索引区内搜索ip 
  104. |---------------------------------------------------------------------------- 
  105. | 
  106. */ 
  107. function searchip($ip){ 
  108. $ip=gethostbyname($ip);     //将域名转成ip 
  109. $ip_offset["ip"]=$ip
  110. $ip=$this->iptoint($ip);    //将ip转换成长整型 
  111. $firstip=0;                 //搜索的上边界 
  112. $lastip=$this->totalip;     //搜索的下边界 
  113. $ipoffset=$this->lastip;    //初始化为最后一条ip地址的偏移地址 
  114. while ($firstip <= $lastip){ 
  115. $i=floor(($firstip + $lastip) / 2);          //计算近似中间记录 floor函数记算给定浮点数小的最大整数,说白了就是四舍五也舍 
  116. fseek($this->fp,$this->firstip + $i * 7);    //定位指针到中间记录 
  117. $startip=strrev(fread($this->fp,4));         //读取当前索引区内的开始ip地址,并将其little-endian的字节序转换成big-endian的字节序 
  118. if ($ip < $startip) { 
  119. $lastip=$i - 1; 
  120. else { 
  121. fseek($this->fp,$this->getoffset()); 
  122. $endip=strrev(fread($this->fp,4)); 
  123. if ($ip > $endip){ 
  124. $firstip=$i + 1; 
  125. else { 
  126. $ip_offset["offset"]=$this->firstip + $i * 7; 
  127. break
  128. return $ip_offset
  129. /* 
  130. |---------------------------------------------------------------------------- 
  131. | 获取ip地址详细信息 
  132. |---------------------------------------------------------------------------- 
  133. | 
  134. */ 
  135. function getaddress($ip){ 
  136. $ip_offset=$this->searchip($ip);  //获取ip 在索引区内的绝对编移地址 
  137. $ipoffset=$ip_offset["offset"]; 
  138. $address["ip"]=$ip_offset["ip"]; 
  139. fseek($this->fp,$ipoffset);      //定位到索引区 
  140. $address["startip"]=long2ip($this->get4b()); //索引区内的开始ip 地址 
  141. $address_offset=$this->getoffset();            //获取索引区内ip在ip记录区内的偏移地址 
  142. fseek($this->fp,$address_offset);            //定位到记录区内 
  143. $address["endip"]=long2ip($this->get4b());   //记录区内的结束ip 地址 
  144. $flag=$this->getflag();                      //读取标志字节 
  145. switch (ord($flag)) { 
  146. case 1:  //地区1地区2都重定向 
  147. $address_offset=$this->getoffset();   //读取重定向地址 
  148. fseek($this->fp,$address_offset);     //定位指针到重定向的地址 
  149. $flag=$this->getflag();               //读取标志字节 
  150. switch (ord($flag)) { 
  151. case 2:  //地区1又一次重定向, 
  152. fseek($this->fp,$this->getoffset()); 
  153. $address["area1"]=$this->getstr(); 
  154. fseek($this->fp,$address_offset+4);      //跳4个字节 
  155. $address["area2"]=$this->readaddress();  //地区2有可能重定向,有可能没有 
  156. break
  157. default//地区1,地区2都没有重定向 
  158. fseek($this->fp,$address_offset);        //定位指针到重定向的地址 
  159. $address["area1"]=$this->getstr(); 
  160. $address["area2"]=$this->readaddress(); 
  161. break
  162. break
  163. case 2: //地区1重定向 地区2没有重定向 
  164. $address1_offset=$this->getoffset();   //读取重定向地址 
  165. fseek($this->fp,$address1_offset);   
  166. $address["area1"]=$this->getstr(); 
  167. fseek($this->fp,$address_offset+8); 
  168. $address["area2"]=$this->readaddress(); 
  169. break
  170. default//地区1地区2都没有重定向 
  171. fseek($this->fp,$address_offset+4); 
  172. $address["area1"]=$this->getstr(); 
  173. $address["area2"]=$this->readaddress(); 
  174. break
  175. //*过滤一些无用数据 
  176. if (strpos($address["area1"],"cz88.net")!=false){ 
  177. $address["area1"]="未知"
  178. if (strpos($address["area2"],"cz88.net")!=false){ 
  179. $address["area2"]=" "
  180. return $address
  181.  
  182. /*用法如下:*/ 
  183. $ip=new iplocation("qqwry.dat"); 
  184. $address=$ip->getaddress("61.129.51.27"); 
  185. //$address=$ip->getaddress(www.phpfensi.com); 
  186. echo '
    '
  187. print_r($address); 
  188. ?> 

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

Tags: php查询ip

分享到: