时间:2023-09-12加入收藏
$data=file_get_contents("https://yuanxiapi.cn/api/iplocation/?ip=".$_SERVER['REMOTE_ADDR']);
$data=json_decode($data,true);
if($data['code']==200){
$diqu='浙江|北京|安徽'; //屏蔽的地区
$array=explode('|',$diqu);
foreach($array as $row){
if(strpos($data['location'],$row)!==false) exit($row.'出现屏蔽地区');
}
}