php ip 화이트 리스트 블랙리스트 기능 구현

이것 은 ip 의 불법 여 부 를 검사 하 는 phop 함수 로 화이트 리스트,블랙리스트 기능 개발 에 적응 하 며 주요 장면 은 api 소스 제한,방문 제한 등에 응 용 됩 니 다.

/**
 * IP , IP
 * @param string $ip IP
 * @param string|array $ips  IP IP
 * @return boolean true ,
 */
function is_safe_ip($ip="",$ips=""){
    if(!$ip) $ip = get_client_ip();  // IP
    if($ips){
        if(is_string($ips)){ //ip "," IP:192.168.1.13,123.23.23.44,193.134.*.*
            $ips = explode(",", $ips);
        }
    }else{ // IP
        $obj = new Setting();
        $ips = explode(",", $obj->getConfig("whiteip")); 
    }
    if(in_array($ip, $ips)){
        return true;
    }
    $ipregexp = implode('|', str_replace( array('*','.'), array('\d+','\.') ,$ips)); 
    $rs = preg_match("/^(".$ipregexp.")$/", $ip); 
    if($rs) return true;
    return ;
}
ip 주 소 를 가 져 옵 니 다.여 기 는 thinkphp 내장 함 수 를 참조 합 니 다.

// , get_client_ip()
/**
 * IP
 * @param integer $type 0 IP 1 IPV4
 * @param boolean $adv ( )
 * @return mixed
 */
function get_client_ip($type = 0,$adv=false) {
    $type       =  $type ? 1 : 0;
    static $ip  =   NULL;
    if ($ip !== NULL) return $ip[$type];
    if($adv){
        if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
            $arr    =   explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']);
            $pos    =   array_search('unknown',$arr);
            if(false !== $pos) unset($arr[$pos]);
            $ip     =   trim($arr[0]);
        }elseif (isset($_SERVER['HTTP_CLIENT_IP'])) {
            $ip     =   $_SERVER['HTTP_CLIENT_IP'];
        }elseif (isset($_SERVER['REMOTE_ADDR'])) {
            $ip     =   $_SERVER['REMOTE_ADDR'];
        }
    }elseif (isset($_SERVER['REMOTE_ADDR'])) {
        $ip     =   $_SERVER['REMOTE_ADDR'];
    }
    // IP
    $long = sprintf("%u",ip2long($ip));
    $ip   = $long ? array($ip, $long) : array('0.0.0.0', 0);
    return $ip[$type];
}
이상 은 본 고의 모든 내용 입 니 다.phop 검 측 IP 를 이해 하 는 데 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기