通过ip判断所在地区

调用淘宝接口,获取

$ip='183.16.198.102';
$json=file_get_contents('http://ip.taobao.com/service/getIpInfo.php?ip='.$ip);
$arr=json_decode($json);
echo $arr->data->country; //国家
echo $arr->data->area; //区域
echo $arr->data->region; //省份
echo $arr->data->city; //城市
echo $arr->data->isp; //运营商

posted @ 2016-10-25 16:40  多多喜  阅读(2703)  评论(0编辑  收藏  举报