如果你对该文章中的内容有疑问/不解,可以点击此处链接提问
要注明问题和此文章链接地址 点击此处跳转
//获取ip地址的实际地区
function get_ip_info($ip = '') {
$url = "http://ip.taobao.com/service/getIpInfo.php?ip=".$ip;
$data = json_decode(file_get_contents($url),true);
if($data['code'] === 0){
return $data['data']['country'].'-'.$data['data']['city'];
}else{
return 'IPv4地址不符合格式';
}
}
打印如下:
{
"code": 0,
"data": {
"ip": "61.*.*.174",
"country": "中国",
"area": "",
"region": "上海",
"city": "上海",
"county": "XX",
"isp": "电信",
"country_id": "CN",
"area_id": "",
"region_id": "310000",
"city_id": "310100",
"county_id": "xx",
"isp_id": "100017"
}
}
王明昌博客
