| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- <?php
- namespace App;
- class IpLocation {
- var $fp;
- var $firstip;//第一条ip索引的偏移地址
- var $lastip; //最后一条ip索引的偏移地址
- var $totalip;//总ip数
- public static $ipl = null;
- public static function getIPAddress() {
- if (!IpLocation::$ipl) IpLocation::$ipl = new IpLocation();
- $ip = IpLocation::$ipl->getIP();
- if (!$ip) return false;
- $address = IpLocation::$ipl->getaddress($ip);
- return mb_convert_encoding( $address ["area1"] . $address ["area2"], 'utf-8', 'GB2312' );
- }
- public static function getIPAddress2() {
- if (!IpLocation::$ipl) IpLocation::$ipl = new IpLocation();
- $ip = IpLocation::$ipl->getIP();
- if (!$ip) return false;
- return IpLocation::$ipl->getaddress($ip);
- }
- public static function getAddressByIP($ip) {
- if (!$ip) return "未知";
- if (!IpLocation::$ipl) IpLocation::$ipl = new IpLocation();
- $address = IpLocation::$ipl->getaddress($ip);
- return mb_convert_encoding( $address ["area1"] . $address ["area2"], 'utf-8', 'GB2312' );
- }
- public function getAddressByIP_new($ip = ''){
- $ch = curl_init();
- $url = 'https://whois.pconline.com.cn/ipJson.jsp?ip=' . $ip;
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
- $data = curl_exec($ch);
- curl_close($ch);
- $data = mb_convert_encoding($data, 'utf-8', 'GB2312'); // 转换编码
- // 截取{}中的字符串
- $data = substr($data, strlen('({') + strpos($data, '({'), (strlen($data) - strpos($data, '})')) * (-1));
- // 将截取的字符串$data中的‘,’替换成‘&’ 将字符串中的‘:‘替换成‘=’
- $data = str_replace('"', "", str_replace(":", "=", str_replace(",", "&", $data)));
- parse_str($data, $addressInfo); // 将字符串转换成数组格式
- return $addressInfo['addr']; // 返回ip归属地
- }
- public function __construct(){
- $datfile = storage_path('').'/qqwry-2021.dat';
- $this->fp=fopen($datfile,'rb')or die("QQWry.Dat不存在,请去网上下載纯真IP数据库, 'QQWry.dat' 放到当前目录下"); //二制方式打开
- $this->firstip = $this->get4b(); //第一条ip索引的绝对偏移地址
- $this->lastip = $this->get4b();//最后一条ip索引的绝对偏移地址
- $this->totalip =($this->lastip - $this->firstip)/7 ; //ip總數 索引区是定长的7个字节,在此要除以7,
- register_shutdown_function(array($this,"closefp"));//为了兼容php5以下版本,本类没有用析构函数,自动关闭ip库.
- }
- function closefp(){
- fclose($this->fp);
- }
- function get4b(){
- $str=unpack("V",fread($this->fp,4));
- return $str[1];
- }
- function getoffset(){
- $str=unpack("V",fread($this->fp,3).chr(0));
- return $str[1];
- }
- function getstr(){
- $str = '';
- $split=fread($this->fp,1);
- while (ord($split)!=0) {
- $str .=$split;
- $split=fread($this->fp,1);
- }
- return $str;
- }
- function iptoint($ip){
- return pack("N",intval(ip2long($ip)));
- }
- public static function getRealIp()
- {
- $headers = [
- 'HTTP_X_REAL_IP',
- 'HTTP_CLIENT_IP',
- 'HTTP_X_FORWARDED_FOR',
- 'HTTP_X_FORWARDED',
- 'HTTP_FORWARDED_FOR',
- 'HTTP_FORWARDED',
- 'REMOTE_ADDR'
- ];
- foreach ($headers as $header) {
- if (!empty($_SERVER[$header])) {
- $ip = $_SERVER[$header];
- // 处理可能存在的多个 IP 地址的情况(例如,逗号分隔的 IP 列表)
- if (strpos($ip, ',') !== false) {
- $ipArray = explode(',', $ip);
- foreach ($ipArray as $individualIp) {
- // 去除多余的空格,并检查是否为有效 IP 地址
- $trimmedIp = trim($individualIp);
- if (filter_var($trimmedIp, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE)) {
- return $trimmedIp;
- }
- }
- } else {
- // 如果只有一个 IP 地址,直接验证并返回
- if (filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE)) {
- return $ip;
- }
- }
- }
- }
- return 'UNKNOWN';
- }
- public static function getIP() {
- $onlineip = '';
- if (getenv('HTTP_CLIENT_IP')&& strcasecmp(getenv('HTTP_CLIENT_IP' ), 'unknown' )) {
- $onlineip = getenv('HTTP_CLIENT_IP' );
- } elseif (getenv('HTTP_X_FORWARDED_FOR')&& strcasecmp(getenv('HTTP_X_FORWARDED_FOR' ), 'unknown' )) {
- $onlineip = getenv('HTTP_X_FORWARDED_FOR' );
- } elseif (getenv('REMOTE_ADDR')&& strcasecmp(getenv('REMOTE_ADDR' ), 'unknown' )) {
- $onlineip = getenv('REMOTE_ADDR' );
- } elseif (isset($_SERVER ['REMOTE_ADDR'])&& $_SERVER ['REMOTE_ADDR'] && strcasecmp($_SERVER ['REMOTE_ADDR'], 'unknown' )) {
- $onlineip = $_SERVER ['REMOTE_ADDR'];
- }
- preg_match("/[\d\.]{7,15}/", $onlineip, $onlineipmatches);
- return isset($onlineipmatches[0]) ? $onlineipmatches [0] : false;
- }
- 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:
- fseek($this->fp,$now_offset);
- $address=$this->getstr();
- break;
- }
- return $address;
- }
- function getflag(){
- return fread($this->fp,1);
- }
- function searchip($ip){
- $ip=gethostbyname($ip); //将域名转成ip
- $ip_offset["ip"]=$ip;
- $ip=$this->iptoint($ip);//将ip转换成长整型
- $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地址,并将其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_offset["offset"]=$this->firstip + $i * 7;
- break;
- }
- }
- }
- return $ip_offset;
- }
- function getaddress($ip){
- $ip_offset=$this->searchip($ip);//获取ip 在索引区内的绝对编移地址
- $ipoffset=$ip_offset["offset"];
- $address["ip"]=$ip_offset["ip"];
- fseek($this->fp,$ipoffset);//定位到索引区
- $address["startip"]=long2ip($this->get4b()); //索引区内的开始ip 地址
- $address_offset=$this->getoffset();//获取索引区内ip在ip记录区内的偏移地址
- fseek($this->fp,$address_offset);//定位到记录区内
- $address["endip"]=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->getoffset());
- $address["area1"]=$this->getstr();
- fseek($this->fp,$address_offset+4);//跳4个字节
- $address["area2"]=$this->readaddress();//地区2有可能重定向,有可能没有
- break;
- default: //地区1,地区2都没有重定向
- fseek($this->fp,$address_offset);//定位指针到重定向的地址
- $address["area1"]=$this->getstr();
- $address["area2"]=$this->readaddress();
- break;
- }
- break;
- case 2: //地区1重定向 地区2没有重定向
- $address1_offset=$this->getoffset(); //读取重定向地址
- fseek($this->fp,$address1_offset);
- $address["area1"]=$this->getstr();
- fseek($this->fp,$address_offset+8);
- $address["area2"]=$this->readaddress();
- break;
- default: //地区1地区2都没有重定向
- fseek($this->fp,$address_offset+4);
- $address["area1"]=$this->getstr();
- $address["area2"]=$this->readaddress();
- break;
- }
- //*过滤一些无用数据
- if (strpos($address["area1"],"CZ88.NET")!=false){
- $address["area1"]="未知";
- }
- if (strpos($address["area2"],"CZ88.NET")!=false){
- $address["area2"]=" ";
- }
- return $address;
- }
- }
|