php获取ip归属地

版权声明:俗世凡人行(释) QQ:748507607 https://blog.csdn.net/weixin_41887155/article/details/88805492
<?php
//太平洋网络查询ip,较快
     $ip = "182.149.164.150";
     $get_ip_city = get_ip_city($ip);
     var_dump($get_ip_city);


     /**
      *$ip  string  必传
      *获取ip归属地 
      *demo 四川省成都市 电信 
      */
     function get_ip_city($ip){     	
	     $ch = curl_init();
	     $url = 'https://whois.pconline.com.cn/ipJson.jsp?ip='.$ip;
	     //用curl发送接收数据
	     curl_setopt($ch, CURLOPT_URL, $url);
	     curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
	     //请求为https
	     curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
	     curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
	     $location = curl_exec($ch);
	     curl_close($ch);
	     //转码
	     $location = mb_convert_encoding($location, 'utf-8','GB2312');
	     //var_dump($location);
	     //截取{}中的字符串
	     $location = substr($location, strlen('({')+strpos($location, '({'),(strlen($location) - strpos($location, '})'))*(-1));
	    //将截取的字符串$location中的‘,’替换成‘&’   将字符串中的‘:‘替换成‘=’
	     $location = str_replace('"',"",str_replace(":","=",str_replace(",","&",$location)));
	     //php内置函数,将处理成类似于url参数的格式的字符串  转换成数组
	     parse_str($location,$ip_location);
	     return $ip_location['addr'];
     }

<?php
//淘宝接口慢
function get_ip_city($ip)
{
    $url="http://ip.taobao.com/service/getIpInfo.php?ip=".$ip;//淘宝  string(12) "四川成都"
    $ipinfo=json_decode(file_get_contents($url));
    if($ipinfo->code=='1'){
        return false;
    }
    $location = $ipinfo->data->region.$ipinfo->data->city.$ipinfo->data->isp;
    return $location;
}

$ip="182.149.164.150" ;
var_dump(get_ip_city($ip));  //string(18) "四川成都电信"

猜你喜欢

转载自blog.csdn.net/weixin_41887155/article/details/88805492