网址:

https://www.cnblogs.com/zhangchaocoming/p/13338493.html

自己项目中使用的:

<?php 
$getIp = '2.85.28.151';

$content = file_get_contents("http://ip-api.com/json/$getIp?lang=zh-CN");
$json = json_decode($content);
if(!property_exists($json, 'country')){
    return '';
}
$address = $json->{'country'};

$return['country'] = $address = $json->{'country'};
$return['province'] = $address = $json->{'regionName'};
$return['city'] = $address = $json->{'city'};

var_dump($return);
?>

 

posted on 2021-03-09 15:47  Beautytoloveme  阅读(485)  评论(0编辑  收藏  举报