当前位置:网站首页>PHP calls the pure IP database to return the specific address
PHP calls the pure IP database to return the specific address
2022-07-07 12:51:00 【Full stack programmer webmaster】
function convertip($ip) {
$ip1num = 0;
$ip2num = 0;
$ipAddr1 ="";
$ipAddr2 ="";
$dat_path = './QQWry.Dat';
if(!preg_match("/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/", $ip)) {
return 'IP Address Error';
}
if(!$fd = @fopen($dat_path, 'rb')){
return 'IP date file not exists or access denied';
}
$ip = explode('.', $ip);
$ipNum = $ip[0] * 16777216 + $ip[1] * 65536 + $ip[2] * 256 + $ip[3];
$DataBegin = fread($fd, 4);
$DataEnd = fread($fd, 4);
$ipbegin = implode('', unpack('L', $DataBegin));
if($ipbegin < 0) $ipbegin += pow(2, 32);
$ipend = implode('', unpack('L', $DataEnd));
if($ipend < 0) $ipend += pow(2, 32);
$ipAllNum = ($ipend - $ipbegin) / 7 + 1;
$BeginNum = 0;
$EndNum = $ipAllNum;
while($ip1num>$ipNum || $ip2num<$ipNum) {
$Middle= intval(($EndNum + $BeginNum) / 2);
fseek($fd, $ipbegin + 7 * $Middle);
$ipData1 = fread($fd, 4);
if(strlen($ipData1) < 4) {
fclose($fd);
return 'System Error';
}
$ip1num = implode('', unpack('L', $ipData1));
if($ip1num < 0) $ip1num += pow(2, 32);
if($ip1num > $ipNum) {
$EndNum = $Middle;
continue;
}
$DataSeek = fread($fd, 3);
if(strlen($DataSeek) < 3) {
fclose($fd);
return 'System Error';
}
$DataSeek = implode('', unpack('L', $DataSeek.chr(0)));
fseek($fd, $DataSeek);
$ipData2 = fread($fd, 4);
if(strlen($ipData2) < 4) {
fclose($fd);
return 'System Error';
}
$ip2num = implode('', unpack('L', $ipData2));
if($ip2num < 0) $ip2num += pow(2, 32);
if($ip2num < $ipNum) {
if($Middle == $BeginNum) {
fclose($fd);
return 'Unknown';
}
$BeginNum = $Middle;
}
}
$ipFlag = fread($fd, 1);
if($ipFlag == chr(1)) {
$ipSeek = fread($fd, 3);
if(strlen($ipSeek) < 3) {
fclose($fd);
return 'System Error';
}
$ipSeek = implode('', unpack('L', $ipSeek.chr(0)));
fseek($fd, $ipSeek);
$ipFlag = fread($fd, 1);
}
if($ipFlag == chr(2)) {
$AddrSeek = fread($fd, 3);
if(strlen($AddrSeek) < 3) {
fclose($fd);
return 'System Error';
}
$ipFlag = fread($fd, 1);
if($ipFlag == chr(2)) {
$AddrSeek2 = fread($fd, 3);
if(strlen($AddrSeek2) < 3) {
fclose($fd);
return 'System Error';
}
$AddrSeek2 = implode('', unpack('L', $AddrSeek2.chr(0)));
fseek($fd, $AddrSeek2);
} else {
fseek($fd, -1, SEEK_CUR);
}
while(($char = fread($fd, 1)) != chr(0))
$ipAddr2 .= $char;
$AddrSeek = implode('', unpack('L', $AddrSeek.chr(0)));
fseek($fd, $AddrSeek);
while(($char = fread($fd, 1)) != chr(0))
$ipAddr1 .= $char;
} else {
fseek($fd, -1, SEEK_CUR);
while(($char = fread($fd, 1)) != chr(0))
$ipAddr1 .= $char;
$ipFlag = fread($fd, 1);
if($ipFlag == chr(2)) {
$AddrSeek2 = fread($fd, 3);
if(strlen($AddrSeek2) < 3) {
fclose($fd);
return 'System Error';
}
$AddrSeek2 = implode('', unpack('L', $AddrSeek2.chr(0)));
fseek($fd, $AddrSeek2);
} else {
fseek($fd, -1, SEEK_CUR);
}
while(($char = fread($fd, 1)) != chr(0)){
$ipAddr2 .= $char;
}
}
fclose($fd);
if(preg_match('/http/i', $ipAddr2)) {
$ipAddr2 = '';
}
$ipaddr = "$ipAddr1 $ipAddr2";
$ipaddr = preg_replace('/CZ88.NET/is', '', $ipaddr);
$ipaddr = preg_replace('/^s*/is', '', $ipaddr);
$ipaddr = preg_replace('/s*$/is', '', $ipaddr);
if(preg_match('/http/i', $ipaddr) || $ipaddr == '') {
$ipaddr = 'Unknown';
}
return $ipaddr;
} Just call this method , Pass in a correct IP Address , You can get innocence IP data The corresponding geographical location in the Library
for example :
convertip(202.96.209.5) The returned value is : Shanghai telecom
notes : The file with this method needs to be combined with the pure database file (QQWry.Dat) Put it in the same level directory , Otherwise, it needs to be modified $dat_path The content of .
preparation :
Suggest local IP Address database , succeed in inviting sb. http://www.cz88.net/ This website downloads a pure IP database , After installation , Go to the installation directory QQWry.dat Take out the documents , This is what we want IP Database , Put it in the directory you want .
Publisher : Full stack programmer stack length , Reprint please indicate the source :https://javaforall.cn/113445.html Link to the original text :https://javaforall.cn
边栏推荐
- 2022广东省安全员A证第三批(主要负责人)考试练习题及模拟考试
- [statistical learning methods] learning notes - improvement methods
- Day-18 hash table, generic
- Talk about four cluster schemes of redis cache, and their advantages and disadvantages
- The URL modes supported by ThinkPHP include four common modes, pathinfo, rewrite and compatibility modes
- [statistical learning method] learning notes - support vector machine (I)
- Leetcode skimming: binary tree 22 (minimum absolute difference of binary search tree)
- @What is the difference between resource and @autowired?
- Sorting, dichotomy
- Customize the web service configuration file
猜你喜欢

OSPF exercise Report

On valuation model (II): PE index II - PE band

.Net下极限生产力之efcore分表分库全自动化迁移CodeFirst

Leetcode skimming: binary tree 27 (delete nodes in the binary search tree)

Importance of database security

Pule frog small 5D movie equipment | 5D movie dynamic movie experience hall | VR scenic area cinema equipment

HZOJ #240. 图形打印四

Dialogue with Wang Wenyu, co-founder of ppio: integrate edge computing resources and explore more audio and video service scenarios

Four functions of opencv
![[pytorch practice] write poetry with RNN](/img/91/a6d3f348ff099b7c44eb185921b1b6.png)
[pytorch practice] write poetry with RNN
随机推荐
在字符串中查找id值MySQL
On valuation model (II): PE index II - PE band
Day22 deadlock, thread communication, singleton mode
@What is the difference between resource and @autowired?
Steps of building SSM framework
[statistical learning method] learning notes - support vector machine (I)
mysql怎么创建,删除,查看索引?
2022-07-07 Daily: Ian Goodfellow, the inventor of Gan, officially joined deepmind
Day-16 set
OSPF exercise Report
免费手机号码归属地API查询接口
聊聊Redis缓存4种集群方案、及优缺点对比
2022-07-07日报:GAN发明者Ian Goodfellow正式加入DeepMind
Realize all, race, allsettled and any of the simple version of promise by yourself
ICLR 2022 | 基于对抗自注意力机制的预训练语言模型
What kind of methods or functions can you view the laravel version of a project?
有什么类方法或是函数可以查看某个项目的Laravel版本的?
How to use PS link layer and shortcut keys, and how to do PS layer link
Importance of database security
What is an esp/msr partition and how to create an esp/msr partition