특정국가 차단하기

by 조쉬 posted Apr 09, 2024
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
 function blockNonUS($is_guest){
        if ($is_guest) {
            // 미국 아니면 모두 아이피 차단되게
            $detail = json_decode(file_get_contents("http://ipinfo.io"));
            if($detail->country !== "US") {
                http_response_code(403);
                exit();
            }
        }        
    }
 
    blockNonUS($is_guest);