IpLocation.php 8.5 KB

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