当前位置:网站首页>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
边栏推荐
- 广州市召开安全生产工作会议
- 【统计学习方法】学习笔记——第五章:决策树
- HZOJ #236. 递归实现组合型枚举
- 怎样重置火狐浏览器
- Talk about four cluster schemes of redis cache, and their advantages and disadvantages
- What if the xshell evaluation period has expired
- The URL modes supported by ThinkPHP include four common modes, pathinfo, rewrite and compatibility modes
- [Q&A]AttributeError: module ‘signal‘ has no attribute ‘SIGALRM‘
- @What is the difference between resource and @autowired?
- [pytorch practice] write poetry with RNN
猜你喜欢
2022广东省安全员A证第三批(主要负责人)考试练习题及模拟考试
leetcode刷题:二叉树26(二叉搜索树中的插入操作)
明星企业普渡科技大裁员:曾募资超10亿 腾讯红杉是股东
Connect to blog method, overload, recursion
Cookie
Financial data acquisition (III) when a crawler encounters a web page that needs to scroll with the mouse wheel to refresh the data (nanny level tutorial)
[crawler] avoid script detection when using selenium
2022聚合工艺考试题模拟考试题库及在线模拟考试
HZOJ #240. 图形打印四
2022a special equipment related management (boiler, pressure vessel and pressure pipeline) simulated examination question bank simulated examination platform operation
随机推荐
[learn microservice from 0] [01] what is microservice
opencv的四个函数
[learn micro services from 0] [02] move from single application to service
Session
Connect to blog method, overload, recursion
Four functions of opencv
Leetcode skimming: binary tree 22 (minimum absolute difference of binary search tree)
CMU15445 (Fall 2019) 之 Project#2 - Hash Table 详解
【统计学习方法】学习笔记——第四章:朴素贝叶斯法
visual stdio 2017关于opencv4.1的环境配置
Cookie
leetcode刷题:二叉树23(二叉搜索树中的众数)
详解ThinkPHP支持的URL模式有四种普通模式、PATHINFO、REWRITE和兼容模式
Leetcode skimming: binary tree 23 (mode in binary search tree)
OSPF exercise Report
leetcode刷题:二叉树22(二叉搜索树的最小绝对差)
2022a special equipment related management (boiler, pressure vessel and pressure pipeline) simulated examination question bank simulated examination platform operation
Several ways to clear floating
2022危险化学品生产单位安全生产管理人员考题及在线模拟考试
免费手机号码归属地API查询接口