欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

根据IP获取位置信息

程序员文章站 2024-01-22 19:09:22
...

根据IP获取位置信息,这里利用了淘宝API,速度比本地查询慢不了多少 无 /** * IP 地址定位 * @param string|integer $ip IP地址 * @param bool $number 是否数字(因此上一个参数为 ip2long 函数转换之后的长整型) * @return array 地址数据 * @throws Excep

根据IP获取位置信息,这里利用了淘宝API,速度比本地查询慢不了多少
/**
	 * IP 地址定位
	 * @param string|integer $ip IP地址
	 * @param bool $number 是否数字(因此上一个参数为 ip2long 函数转换之后的长整型)
	 * @return array 地址数据
	 * @throws Exception 获取出错
	 */
	function location($ip, $number = false)
	{
		//如果是数字形式的IP地址,则转换成标准IP
		if ($number)
		{
			$ip = long2ip($ip);
		}
		$api = 'http://ip.taobao.com/service/getIpInfo.php';
		$resp = file_get_contents($api.'?ip='.$ip);
		$resp = json_decode($resp,1);
		if($resp['code'] == 0){
			return $resp['data'];
		}else{
			throw new Exception($resp['data']);
		}
	}