PHP利用纯真IP数据库在本地实现IP地址信息查询

举报
lxw1844912514 发表于 2022/03/27 02:42:44 2022/03/27
【摘要】 https://blog.csdn.net/myweishanli/article/details/45098693 准备工作: 建议本地IP地址数据库,请到http://www.cz88.net/这个网站下载一个纯真IP数据库,安装完成后,到安装目录里把QQWry.dat文件取出来,这个就是我们想要的IP数据库了,放到你...

https://blog.csdn.net/myweishanli/article/details/45098693

准备工作:

建议本地IP地址数据库,请到http://www.cz88.net/这个网站下载一个纯真IP数据库,安装完成后,到安装目录里把QQWry.dat文件取出来,这个就是我们想要的IP数据库了,放到你想要目录下。

正面这个IP地址查询处理的类


    
  1. <?php
  2. /**
  3. * IP 地理位置查询类
  4. */
  5. class Helper_IpLocation
  6. {
  7. /**
  8. * QQWry.Dat文件指针
  9. *
  10. * @var resource
  11. */
  12. private $fp;
  13. /**
  14. * 第一条IP记录的偏移地址
  15. *
  16. * @var int
  17. */
  18. private $firstip;
  19. /**
  20. * 最后一条IP记录的偏移地址
  21. *
  22. * @var int
  23. */
  24. private $lastip;
  25. /**
  26. * IP记录的总条数(不包含版本信息记录)
  27. *
  28. * @var int
  29. */
  30. private $totalip;
  31. /**
  32. * 构造函数,打开 QQWry.Dat 文件并初始化类中的信息
  33. *
  34. * @param string $filename
  35. */
  36. public function __construct($filename = 'qqwry.dat')
  37. {
  38. $this->fp = 0;
  39. if (($this->fp = fopen($filename, 'rb')) !== false) {
  40. $this->firstip = $this->getlong();
  41. $this->lastip = $this->getlong();
  42. $this->totalip = ($this->lastip - $this->firstip) / 7;
  43. //注册析构函数,使其在程序执行结束时执行
  44. register_shutdown_function(array(
  45. &$this,
  46. '__destruct'
  47. ));
  48. }
  49. }
  50. /**
  51. * 析构函数,用于在页面执行结束后自动关闭打开的文件。
  52. *
  53. */
  54. public function __destruct()
  55. {
  56. if ($this->fp) {
  57. fclose($this->fp);
  58. }
  59. $this->fp = 0;
  60. }
  61. /**
  62. * 返回读取的长整型数
  63. *
  64. * @access private
  65. * @return int
  66. */
  67. private function getlong()
  68. {
  69. //将读取的little-endian编码的4个字节转化为长整型数
  70. $result = unpack('Vlong', fread($this->fp, 4));
  71. return $result['long'];
  72. }
  73. /**
  74. * 返回读取的3个字节的长整型数
  75. *
  76. * @access private
  77. * @return int
  78. */
  79. private function getlong3()
  80. {
  81. //将读取的little-endian编码的3个字节转化为长整型数
  82. $result = unpack('Vlong', fread($this->fp, 3) . chr(0));
  83. return $result['long'];
  84. }
  85. /**
  86. * 返回压缩后可进行比较的IP地址
  87. *
  88. * @access private
  89. * @param string $ip
  90. * @return string
  91. */
  92. private function packip($ip)
  93. {
  94. // 将IP地址转化为长整型数,如果在PHP5中,IP地址错误,则返回False,
  95. // 这时intval将Flase转化为整数-1,之后压缩成big-endian编码的字符串
  96. return pack('N', intval(ip2long($ip)));
  97. }
  98. /**
  99. * 返回读取的字符串
  100. *
  101. * @access private
  102. * @param string $data
  103. * @return string
  104. */
  105. private function getstring($data = "")
  106. {
  107. $char = fread($this->fp, 1);
  108. while (ord($char) > 0) { // 字符串按照C格式保存,以结束
  109. $data .= $char; // 将读取的字符连接到给定字符串之后
  110. $char = fread($this->fp, 1);
  111. }
  112. return iconv('gbk', 'utf-8', $data);
  113. }
  114. /**
  115. * 返回地区信息
  116. *
  117. * @access private
  118. * @return string
  119. */
  120. private function getarea()
  121. {
  122. $byte = fread($this->fp, 1); // 标志字节
  123. switch (ord($byte)) {
  124. case 0: // 没有区域信息
  125. $area = "";
  126. break;
  127. case 1:
  128. case 2: // 标志字节为1或2,表示区域信息被重定向
  129. fseek($this->fp, $this->getlong3());
  130. $area = $this->getstring();
  131. break;
  132. default: // 否则,表示区域信息没有被重定向
  133. $area = $this->getstring($byte);
  134. break;
  135. }
  136. return $area;
  137. }
  138. /**
  139. * 根据所给 IP 地址或域名返回所在地区信息
  140. *
  141. * @access public
  142. * @param string $ip
  143. * @return array
  144. */
  145. public function getlocation($ip)
  146. {
  147. if (!$this->fp)
  148. return null; // 如果数据文件没有被正确打开,则直接返回空
  149. $location['ip'] = gethostbyname($ip); // 将输入的域名转化为IP地址
  150. $ip = $this->packip($location['ip']); // 将输入的IP地址转化为可比较的IP地址
  151. // 不合法的IP地址会被转化为255.255.255.255
  152. // 对分搜索
  153. $l = 0; // 搜索的下边界
  154. $u = $this->totalip; // 搜索的上边界
  155. $findip = $this->lastip; // 如果没有找到就返回最后一条IP记录(QQWry.Dat的版本信息)
  156. while ($l <= $u) { // 当上边界小于下边界时,查找失败
  157. $i = floor(($l + $u) / 2); // 计算近似中间记录
  158. fseek($this->fp, $this->firstip + $i * 7);
  159. $beginip = strrev(fread($this->fp, 4)); // 获取中间记录的开始IP地址
  160. // strrev函数在这里的作用是将little-endian的压缩IP地址转化为big-endian的格式
  161. // 以便用于比较,后面相同。
  162. if ($ip < $beginip) { // 用户的IP小于中间记录的开始IP地址时
  163. $u = $i - 1; // 将搜索的上边界修改为中间记录减一
  164. } else {
  165. fseek($this->fp, $this->getlong3());
  166. $endip = strrev(fread($this->fp, 4)); // 获取中间记录的结束IP地址
  167. if ($ip > $endip) { // 用户的IP大于中间记录的结束IP地址时
  168. $l = $i + 1; // 将搜索的下边界修改为中间记录加一
  169. } else { // 用户的IP在中间记录的IP范围内时
  170. $findip = $this->firstip + $i * 7;
  171. break; // 则表示找到结果,退出循环
  172. }
  173. }
  174. }
  175. //获取查找到的IP地理位置信息
  176. fseek($this->fp, $findip);
  177. $location['beginip'] = long2ip($this->getlong()); // 用户IP所在范围的开始地址
  178. $offset = $this->getlong3();
  179. fseek($this->fp, $offset);
  180. $location['endip'] = long2ip($this->getlong()); // 用户IP所在范围的结束地址
  181. $byte = fread($this->fp, 1); // 标志字节
  182. switch (ord($byte)) {
  183. case 1: // 标志字节为1,表示国家和区域信息都被同时重定向
  184. $countryOffset = $this->getlong3(); // 重定向地址
  185. fseek($this->fp, $countryOffset);
  186. $byte = fread($this->fp, 1); // 标志字节
  187. switch (ord($byte)) {
  188. case 2: // 标志字节为2,表示国家信息又被重定向
  189. fseek($this->fp, $this->getlong3());
  190. $location['country'] = $this->getstring();
  191. fseek($this->fp, $countryOffset + 4);
  192. $location['area'] = $this->getarea();
  193. break;
  194. default: // 否则,表示国家信息没有被重定向
  195. $location['country'] = $this->getstring($byte);
  196. $location['area'] = $this->getarea();
  197. break;
  198. }
  199. break;
  200. case 2: // 标志字节为2,表示国家信息被重定向
  201. fseek($this->fp, $this->getlong3());
  202. $location['country'] = $this->getstring();
  203. fseek($this->fp, $offset + 8);
  204. $location['area'] = $this->getarea();
  205. break;
  206. default: // 否则,表示国家信息没有被重定向
  207. $location['country'] = $this->getstring($byte);
  208. $location['area'] = $this->getarea();
  209. break;
  210. }
  211. if ($location['country'] == " CZ88.NET") { // CZ88.NET表示没有有效信息
  212. $location['country'] = "未知";
  213. }
  214. if ($location['area'] == " CZ88.NET") {
  215. $location['area'] = "";
  216. }
  217. return $location;
  218. }
  219. }

 调用方式:


    
  1. <?php
  2. include 'IpLocation.php';
  3. echo "<pre>";
  4. $ip = "180.76.6.130";
  5. $iplocation = new IpLocation();
  6. $location = $iplocation->getlocation($ip);
  7. print_r($location);

 

文章来源: blog.csdn.net,作者:lxw1844912514,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/lxw1844912514/article/details/100029028

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。