通过IP获取地理位置(新浪API)

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

IP 定位

function ip2Addr($ip)
{
    $api = "http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip={$ip}"; 
    $json = @file_get_contents($api);//调用新浪IP地址库
    $arr = json_decode($json, true);
    return $arr['province'] . $arr['city'];
}

没了....

 

 

 

转载于:https://my.oschina.net/sallency/blog/761232

你可能感兴趣的:(通过IP获取地理位置(新浪API))