本源码模块会在第一次被调用时自动从纯真网下载最新的 IP 数据库到本地,因此第一次进行查询时会有点慢。如果你的服务器因为某些原因,无法连接到纯真网获取数据库,可以直接下载离线版,并将 IPQuery.class.php 第 25 行的 $dbExpires 值改为“0”(即永不自动更新数据库)。4 {6 [) p( c n+ E3 D3 v; c
模块代码:0 Y9 R' k9 v4 X5 ~7 X- Y: \- n
- <?php
- /**
- * 纯真 IP 数据库查询
- *
- * 参考资料:
- * - 纯真 IP 数据库 http://www.cz88.net/ip/
- * - PHP 读取纯真IP地址数据库 http://ju.outofmemory.cn/entry/42500
- * - 纯真 IP 数据库自动更新文件教程 https://www.22vd.com/40035.html
- * - IpLocation https://github.com/nauxliu/IpLocation/
- *
- * 使用示例:
- * $ip = new IPQuery();
- * $addr = $ip->query('IP地址');
- * print_r($addr);
- */
-
- class IPQuery {
- private $fh; // IP数据库文件句柄
- private $first; // 第一条索引
- private $last; // 最后一条索引
- private $total; // 索引总数
- private $dbFile = __DIR__ . DIRECTORY_SEPARATOR . 'qqwry.dat'; // 纯真 IP 数据库文件存放路径
- private $dbExpires = 86400 * 10; // 数据库文件有效期(10天)如无需自动更新 IP 数据库,请将此值改为 0
-
- // 构造函数
- function __construct() {
- // IP 数据库文件不存在或已过期,则自动获取
- if(!file_exists($this->dbFile) || ($this->dbExpires && ((time() - filemtime($this->dbFile)) > $this->dbExpires))) {
- $this->update();
- }
- }
-
- // 忽略超时
- private function ignore_timeout() {
- @ignore_user_abort(true);
- @ini_set('max_execution_time', 48 * 60 * 60);
- @set_time_limit(48 * 60 * 60); // set_time_limit(0) 2day
- @ini_set('memory_limit', '4000M');// 4G;
- }
-
- // 读取little-endian编码的4个字节转化为长整型数
- private function getLong4() {
- $result = unpack('Vlong', fread($this->fh, 4));
- return $result['long'];
- }
-
- // 读取little-endian编码的3个字节转化为长整型数
- private function getLong3() {
- $result = unpack('Vlong', fread($this->fh, 3).chr(0));
- return $result['long'];
- }
-
- // 查询位置信息
- private function getPos($data = '') {
- $char = fread($this->fh, 1);
- while (ord($char) != 0) { // 地区信息以 0 结束
- $data .= $char;
- $char = fread($this->fh, 1);
- }
- return $data;
- }
-
- // 查询运营商
- private function getISP() {
- $byte = fread($this->fh, 1); // 标志字节
- switch (ord($byte)) {
- case 0: $area = ''; break; // 没有相关信息
- case 1: // 被重定向
- fseek($this->fh, $this->getLong3());
- $area = $this->getPos(); break;
- case 2: // 被重定向
- fseek($this->fh, $this->getLong3());
- $area = $this->getPos(); break;
- default: $area = $this->getPos($byte); break; // 没有被重定向
- }
- return $area;
- }
-
- // 检查 IP 格式是否正确
- public function checkIp($ip) {
- $arr = explode('.', $ip);
- if(count($arr) != 4) return false;
- for ($i = 0; $i < 4; $i++) {
- if ($arr[$i] < '0' || $arr[$i] > '255') {
- return false;
- }
- }
- return true;
- }
-
- // 查询 IP 地址
- public function query($ip) {
- if(!$this->checkIp($ip)) {
- return false;
- }
-
- $this->fh = fopen($this->dbFile, 'rb');
- $this->first = $this->getLong4();
- $this->last = $this->getLong4();
- $this->total = ($this->last - $this->first) / 7; // 每条索引7字节
-
- $ip = pack('N', intval(ip2long($ip)));
-
- // 二分查找 IP 位置
- $l = 0;
- $r = $this->total;
- while($l <= $r) {
- $m = floor(($l + $r) / 2); // 计算中间索引
- fseek($this->fh, $this->first + $m * 7);
- $beginip = strrev(fread($this->fh, 4)); // 中间索引的开始IP地址
- fseek($this->fh, $this->getLong3());
- $endip = strrev(fread($this->fh, 4)); // 中间索引的结束IP地址
-
- if ($ip < $beginip) { // 用户的IP小于中间索引的开始IP地址时
- $r = $m - 1;
- } else {
- if ($ip > $endip) { // 用户的IP大于中间索引的结束IP地址时
- $l = $m + 1;
- } else { // 用户IP在中间索引的IP范围内时
|