通过IP对接淘宝API接口返回地区信息

//通过淘宝API接口返回地区信息
function getarea($ip){
    $url="http://ip.taobao.com/service/getIpInfo.php?ip=".$ip;
    $ip=json_decode(file_get_contents($url));
    if((string)$ip->code=='1'){
        return '';
    }
    $data = (array)$ip->data;
    $data['city']=($data['region']==$data['city'])?'':$data['city'];
    return $data['country'].$data['region'].$data['city'].$data['county'].$data['isp'];
}

淘宝API失效参考http://www.80zx.com/houduan/25.html

支付宝扫码打赏 微信扫码打赏

如果本文对你有帮助,欢迎打赏本站

喜欢 ()or分享
    匿名评论
  • 评论
人参与,条评论