时间:2021-07-01 10:21:17 帮助过:35人阅读
------解决方案--------------------
$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; //运营商
------解决方案--------------------
echo GetIP();它就返回ip,然后接这段代码就可以了:$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; //运营商
两段代码连起来啊
------解决方案--------------------
放到服务器,直接就显示地区了?
代码
header("Content-type: text/html; charset=utf-8"); $ip=$_SERVER["REMOTE_ADDR"]; $json=file_get_contents('http://ip.taobao.com/service/getIpInfo.php?ip='.$ip); $arr=json_decode($json); echo 'IP:'.$ip; echo ' 城市:'.$arr->data->city;
效果:
http://rick.sinaapp.com/
------解决方案--------------------
1.首先想办法获取到IP地址,要是自己不会。请点击
2.取到了IP地址。可调用淘宝api
$json=file_get_contents('http://ip.taobao.com/service/getIpInfo.php?ip='.$ip); $arr=json_decode($json); echo " 以上代码足够完成你的需求