91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用php怎么對qqwry.dat的 ip地址進行讀取

發布時間:2020-12-18 15:31:01 來源:億速云 閱讀:139 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關利用php怎么對qqwry.dat的 ip地址進行讀取,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

實例如下:

<?php
// +----------------------------------------------------------------------
// |
// +----------------------------------------------------------------------
// |
// +----------------------------------------------------------------------
class iplocate{
var $fp;
var $firstip; //第一條ip索引的偏移地址
var $lastip; //最后一條ip索引的偏移地址
var $totalip; //總ip數


// 獲取客戶端IP地址
function get_client_ip(){
if (getenv("HTTP_CLIENT_IP") && strcasecmp(getenv("HTTP_CLIENT_IP"), "unknown"))
$ip = getenv("HTTP_CLIENT_IP");
else if (getenv("HTTP_X_FORWARDED_FOR") && strcasecmp(getenv("HTTP_X_FORWARDED_FOR"), "unknown"))
$ip = getenv("HTTP_X_FORWARDED_FOR");
else if (getenv("REMOTE_ADDR") && strcasecmp(getenv("REMOTE_ADDR"), "unknown"))
$ip = getenv("REMOTE_ADDR");
else if (isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] && strcasecmp($_SERVER['REMOTE_ADDR'], "unknown"))
$ip = $_SERVER['REMOTE_ADDR'];
else
$ip = "unknown";
return($ip);
}
//*
//構造函數,初始化一些變量
//$datfile 的值為純真IP數據庫的名子,可自行修改.
//*
function iplocate(){
$datfile = "ip1.dat";
$this->fp=fopen($datfile,'rb'); //二制方式打開
$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庫.
}
//*
//關閉ip庫
//*
function closefp(){
fclose($this->fp);
}
//*
//讀取4個字節并將解壓成long的長模式
//*
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];
}
//*
//讀取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地址做比較
//*
function iptoint($ip){
return pack("N",intval(ip2long($ip)));
}
//*
//獲取客戶端ip地址
//注意:如果你想要把ip記錄到服務器上,請在寫庫時先檢查一下ip的數據是否安全.
//*
function getIP() {
if (getenv('HTTP_CLIENT_IP')) {
$ip = getenv('HTTP_CLIENT_IP'); 
}
elseif (getenv('HTTP_X_FORWARDED_FOR')) { //獲取客戶端用代理服務器訪問時的真實ip 地址
$ip = getenv('HTTP_X_FORWARDED_FOR');
}
elseif (getenv('HTTP_X_FORWARDED')) { 
$ip = getenv('HTTP_X_FORWARDED');
}
elseif (getenv('HTTP_FORWARDED_FOR')) {
$ip = getenv('HTTP_FORWARDED_FOR'); 
}
elseif (getenv('HTTP_FORWARDED')) {
$ip = getenv('HTTP_FORWARDED');
}
else { 
$ip = $_SERVER['REMOTE_ADDR'];
}
return $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:
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_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;
}
//*
//獲取ip地址詳細信息
//*
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"]=" ";
}
foreach($address as $k=>$item)
{
if(!$this->is_utf8($address[$k]))
{
$address[$k] = iconv('gbk','utf-8',$item);
}
}
return $address;
}

function is_utf8($string)
{
return preg_match('%^(?:
[\x09\x0A\x0D\x20-\x7E] # ASCII
| [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
| \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
| [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
| \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
| \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
| [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
| \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
)*$%xs', $string);
}
}
?>

以上就是利用php怎么對qqwry.dat的 ip地址進行讀取,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

亚东县| 德昌县| 富锦市| 申扎县| 大英县| 河源市| 临颍县| 青浦区| 和平区| 当阳市| 扎赉特旗| 宁蒗| 柘城县| 宜兰县| 上饶县| 句容市| 沙坪坝区| 柳河县| 卢氏县| 治多县| 密山市| 徐闻县| 台中市| 涞水县| 海门市| 万载县| 旺苍县| 蕲春县| 临沭县| 六枝特区| 定安县| 汉阴县| 河源市| 溧阳市| 同心县| 宁南县| 资溪县| 礼泉县| 永春县| 边坝县| 苏尼特左旗|