1 <?php
2 $data = '254.254.254.254';
3 echo ip2long($data);
4
5
6 function getIP()
7 {
8 if(getenv("HTTP_CLIENT_IP") && strcasecmp(getenv("HTTP_CLIENT_IP"), "unknown"))
9 $ip = getenv("HTTP_CLIENT_IP");
10 elseif(getenv("HTTP_X_FORWARDED_FOR") && strcasecmp(getenv("HTTP_X_FORWARDED_FOR"), "unknown"))
11 $ip = getenv("HTTP_X_FORWARDED_FOR");
12 elseif (getenv("REMOTE_ADDR") && strcasecmp(getenv("REMOTE_ADDR"), "unknown"))
13 $ip = getenv("REMOTE_ADDR");
14 elseif (isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] && strcasecmp($_SERVER['REMOTE_ADDR'], "unknown"))
15 $ip = $_SERVER['REMOTE_ADDR'];
16 else
17 $ip = "0.0.0.0";
18 return $ip;
19 }
20
21
22 class IpLocation {
23 //数据文件指针
24 var $fp;
25 var $firstip;
26 var $lastip;
27 var $totalip;
28
29
30 function getlong() {
31 //unpack从二进制字符串对数据进行解包
32 //将读取的little-endian编码的4个字节转化为长整型数,fread安全读取二进制文件
33 $result = unpack('Vlong', fread($this->fp, 4));
34 return $result['long'];
35 }
36
37
38 function getlong3() {
39 //将读取的little-endian编码的3个字节转化为长整型数
40 $result = unpack('Vlong', fread($this->fp, 3).chr(0));
41 return $result['long'];
42 }
43
44
45 function packip($ip) {
46 //pack把数据装入一个二进制字符串
47 //ip2long将IP地址转成无符号的长整型,也可以用来验证IP地址
48 return pack('N', intval(ip2long($ip)));
49 }
50
51
52 function getstring($data = "") {
53 $char = fread($this->fp, 1);
54 while (ord($char) > 0) { //ord返回字符的ASCII值,字符串按照C格式保存,以\0结束
55 $data .= $char;
56 $char = fread($this->fp, 1);
57 }
58 return $data;
59 }
60
61
62 function getarea() {
63 $byte = fread($this->fp, 1); // 标志字节
64 switch (ord($byte)) {
65 case 0: // 没有区域信息
66 $area = "";
67 break;
68 case 1:
69 case 2: // 标志字节为1或2,表示区域信息被重定向
70 fseek($this->fp, $this->getlong3());
71 $area = $this->getstring();
72 break;
73 default: // 否则,表示区域信息没有被重定向
74 $area = $this->getstring($byte);
75 break;
76 }
77 return $area;
78 }
79
80
81 function getlocation($ip) {
82 if (!$this->fp) return null; // 如果数据文件没有被正确打开,则直接返回空
83 $location['ip'] = gethostbyname($ip); // 域名转化为IP地址
84 $ip = $this->packip($location['ip']); // 将输入的IP地址转化为可比较的IP地址
85 // 不合法的IP地址会被转化为255
86 // 对分搜索
87 $l = 0; // 搜索的下边界
88 $u = $this->totalip; // 搜索的上边界
89 $findip = $this->lastip; // 如果没有找到就返回最后一条IP记录(QQWry.Dat的版本信息)
90 while ($l <= $u) { // 当上边界小于下边界时,查找失败
91 $i = floor(($l + $u) / 2); // 计算近似中间记录
92 fseek($this->fp, $this->firstip + $i * 7);
93 $beginip = strrev(fread($this->fp, 4)); // 获取中间记录的开始IP地址,strrev反转字符串
94 // strrev函数在这里的作用是将little-endian的压缩IP地址转化为big-endian的格式,便于比较
95 //关于little-endian与big-endian 参考:http://baike.baidu.com/view/2368412.htm
96 if ($ip < $beginip) { // 用户的IP小于中间记录的开始IP地址时
97 $u = $i - 1; // 将搜索的上边界修改为中间记录减一
98 }
99 else {
100 fseek($this->fp, $this->getlong3());
101 $endip = strrev(fread($this->fp, 4)); // 获取中间记录的结束IP地址
102 if ($ip > $endip) { // 用户的IP大于中间记录的结束IP地址时
103 $l = $i + 1; // 将搜索的下边界修改为中间记录加一
104 }
105 else { // 用户的IP在中间记录的IP范围内时
106 $findip = $this->firstip + $i * 7;
107 break; // 则表示找到结果,退出循环
108 }
109 }
110 }
111
112
113 fseek($this->fp, $findip);
114 $location['beginip'] = long2ip($this->getlong()); // 用户IP所在范围的开始地址
115 $offset = $this->getlong3();
116 fseek($this->fp, $offset);
117 $location['endip'] = long2ip($this->getlong()); // 用户IP所在范围的结束地址
118 $byte = fread($this->fp, 1); // 标志字节
119 switch (ord($byte)) {
120 case 1: // 标志字节为1,表示国家和区域信息都被同时重定向
121 $countryOffset = $this->getlong3(); // 重定向地址
122 fseek($this->fp, $countryOffset);
123 $byte = fread($this->fp, 1); // 标志字节
124 switch (ord($byte)) {
125 case 2: // 标志字节为2,表示国家信息又被重定向
126 fseek($this->fp, $this->getlong3());
127 $location['country'] = $this->getstring();
128 fseek($this->fp, $countryOffset + 4);
129 $location['area'] = $this->getarea();
130 break;
131 default: // 否则,表示国家信息没有被重定向
132 $location['country'] = $this->getstring($byte);
133 $location['area'] = $this->getarea();
134 break;
135 }
136 break;
137 case 2: // 标志字节为2,表示国家信息被重定向
138 fseek($this->fp, $this->getlong3());
139 $location['country'] = $this->getstring();
140 fseek($this->fp, $offset + 8);
141 $location['area'] = $this->getarea();
142 break;
143 default: // 否则,表示国家信息没有被重定向
144 $location['country'] = $this->getstring($byte);
145 $location['area'] = $this->getarea();
146 break;
147 }
148 if ($location['country'] == " CZNET") { // CZNET表示没有有效信息
149 $location['country'] = "未知";
150 }
151 if ($location['area'] == " CZNET") {
152 $location['area'] = "";
153 }
154 return $location;
155 }
156 /**
157 * 构造函数,打开 QQWry.Dat 文件并初始化类中的信息
158 */
159 function IpLocation($filename = "qqwry.dat") {
160 $this->fp = 0;
161 if (($this->fp = @fopen($filename, 'rb')) !== false) {
162 $this->firstip = $this->getlong();
163 $this->lastip = $this->getlong();
164 $this->totalip = ($this->lastip - $this->firstip) / 7;
165 //注册析构函数,使其在程序执行结束时执行
166 register_shutdown_function(array(&$this, '_IpLocation'));
167 }
168 }
169 /**
170 * 析构函数,用于在页面执行结束后自动关闭打开的文件
171 */
172 function _IpLocation() {
173 if ($this->fp) {
174 fclose($this->fp);
175 }
176 $this->fp = 0;
177 }
178 }
179 header("content-Type: text/html; charset=gbk");
180 $ipOrDomain='110.0.0.0';
181 //$ipOrDomain='www.baidu.com';
182 $iplocation = new IpLocation();
183 $location = $iplocation->getlocation($ipOrDomain);
184 $address=mb_convert_encoding($location['country'].$location['area'], "gbk", "gbk");
185 echo $address;
186 ?>