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);