当前位置:Gxlcms > PHP教程 > 再次提供一个IP地理位置查询类

再次提供一个IP地理位置查询类

时间:2021-07-01 10:21:17 帮助过:20人阅读

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

人气教程排行