版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、php查询ip所在地的方法_ 具体实现方法如下: 代码如下: ?php /* * date 2021.12.21 注:文件头 第一条索引的偏移量 (4byte) + 最终一条索引的偏移地址 (4byte) 8字节 记录区 结束ip (4byte) + 地区1 + 地区2 4字节+不定长 索引区 开头ip (4byte) + 指向记录区的偏移地址 (3byte) 7字节 */ class iplocation var $fp; var $firstip; /第一条ip索引的偏移地址 var $lastip; /最终一条ip索引的偏移地址 var $totalip; /总ip数 /* |- | 构
2、造函数,初始化一些变量 |- | */ function iplocation($datfile = wry.dat) $this-fp=fopen($datfile,rb)or die(wry.dat不存在,请去网上 a href=l下载纯真ip数据 库/a, wry.dat 放到当前名目下); /二制方式打开 $this-firstip = $this-get4b(); /第一条ip索引的肯定偏移地址 $this-lastip = $this-get4b(); /最终一条ip索引的肯定偏移地址 $this-totalip =($this-lastip - $this-firstip)/7
3、; /ip总数 索引区是定长的7个字节,在此要除以7, register_shutdown_function(array($this,closefp); /为了兼容php5以下版本,本类没有用析构函数,自动关闭ip库. /* |- | 关闭ip库 |- | */ function closefp() fclose($this-fp); /* |- | 读取4个字节并将解压成long的长模式 |- | */ function get4b() $str=unpack(v,fread($this-fp,4); return $str1; /* |- | 读取重定向了的偏移地址 |- | */ fun
4、ction getoffset() $str=unpack(v,fread($this-fp,3).chr(0); return $str1; /* |- | 读取ip的具体地址信息 |- | */ function getstr() $split=fread($this-fp,1); while (ord($split)!=0) $str .=$split; $split=fread($this-fp,1); return $str; /* |- | 将ip通过ip2long转成ipv4的互联网地址,再将他压缩成big-endian字节序 ,用来和索引区内的ip地址做比较 |- | */ f
5、unction iptoint($ip) return pack(n,intval(ip2long($ip); /* |- | 猎取地址信息 |- | */ function readaddress() $now_offset=ftell($this-fp); /得到当前的指针位址 $flag=$this-getflag(); switch (ord($flag) case 0: $address=; break; case 1: case 2: fseek($this-fp,$this-getoffset(); $address=$this-getstr(); break; default:
6、 fseek($this-fp,$now_offset); $address=$this-getstr(); break; return $address; /* |- | 猎取标记1或2 用来确定地址是否重定向了 |- | */ function getflag() return fread($this-fp,1); /* |- | 用二分查找法在索引区内搜索ip |- | */ function searchip($ip) $ip=gethostbyname($ip); /将域名转成ip $ip_offsetip=$ip; $ip=$this-iptoint($ip); /将ip转换成长整
7、型 $firstip=0; /搜索的上边界 $lastip=$this-totalip; /搜索的下边界 $ipoffset=$this-lastip; /初始化为最终一条ip地址的偏移地址 while ($firstip = $lastip) $i=floor($firstip + $lastip) / 2); /计算近似中间记录 floor函数记算给定浮点数小的最大整数,说白了就是四舍五也舍 fseek($this-fp,$this-firstip + $i * 7); /定位指针到中间记录 $startip=strrev(fread($this-fp,4); /读取当前索引区内的开头ip
8、地址,并将其little-endian的字节序转换成big-endian的字节序 if ($ip $startip) $lastip=$i - 1; else fseek($this-fp,$this-getoffset(); $endip=strrev(fread($this-fp,4); if ($ip $endip) $firstip=$i + 1; else $ip_offsetoffset=$this-firstip + $i * 7; break; return $ip_offset; /* |- | 猎取ip地址具体信息 |- | */ function getaddress($
9、ip) $ip_offset=$this-searchip($ip); /猎取ip 在索引区内的肯定编移地址 $ipoffset=$ip_offsetoffset; $addressip=$ip_offsetip; fseek($this-fp,$ipoffset); /定位到索引区 $addressstartip=long2ip($this-get4b(); /索引区内的开头ip 地址 $address_offset=$this-getoffset(); /猎取索引区内ip在ip记录区内的偏移地址 fseek($this-fp,$address_offset); /定位到记录区内 $addr
10、essendip=long2ip($this-get4b(); /记录区内的结束ip 地址 $flag=$this-getflag(); /读取标记字节 switch (ord($flag) case 1: /地区1地区2都重定向 $address_offset=$this-getoffset(); /读取重定向地址 fseek($this-fp,$address_offset); /定位指针到重定向的地址 $flag=$this-getflag(); /读取标记字节 switch (ord($flag) case 2: /地区1又一次重定向, fseek($this-fp,$this-get
11、offset(); $addressarea1=$this-getstr(); fseek($this-fp,$address_offset+4); /跳4个字节 $addressarea2=$this-readaddress(); /地区2有可能重定向,有可能没有 break; default: /地区1,地区2都没有重定向 fseek($this-fp,$address_offset); /定位指针到重定向的地址 $addressarea1=$this-getstr(); $addressarea2=$this-readaddress(); break; break; case 2: /地
12、区1重定向 地区2没有重定向 $address1_offset=$this-getoffset(); /读取重定向地址 fseek($this-fp,$address1_offset); $addressarea1=$this-getstr(); fseek($this-fp,$address_offset+8); $addressarea2=$this-readaddress(); break; default: /地区1地区2都没有重定向 fseek($this-fp,$address_offset+4); $addressarea1=$this-getstr(); $addressarea2=$this-readaddress(); break; /*过滤一些无用数据 if (strpos($addressarea1,)!=false) $addressarea1=未知; if (strpos($addressarea2,)
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 门面房租赁合同模板4篇
- 《我们民族精神》课件
- 云南省玉溪市通海县第二中学2025届高三二诊模拟考试数学试卷含解析
- 两种语言的协议书 份数表达
- 房屋租赁三方合同注意
- 合同审批滞后建议
- 颐和园教育课件
- 劳动法培训课件
- 高中+语文++《边城(节选)》课件++统编版高中语文选择性必修下册
- 《食物中毒知识培训》课件
- 汉字文化解密学习通超星期末考试答案章节答案2024年
- 机电安装招标文件范本
- 七十周岁及以上老人驾照年审,“三力”测试题库-附答案
- 四川成都工业地产分析
- 外购外协管理制度
- 大庆医学高等专科学校单招参考试题库(含答案)
- 国家开放大学(山东)《财税法规专题》形考任务1-3+终结性考核参考答案
- 2024-2030年中国集中供热行业供需平衡与投资运行模式规划研究报告
- TCSRME 034-2023 隧道岩溶堵水注浆技术规程
- 2024年全国普法知识考试题库与答案
- 桂枝颗粒营销策略与品牌定位
评论
0/150
提交评论