IpLocation.class.php 8.6 KB

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