public function test(){ $ipInfos = $this->GetIpLookup('115.236.70.108'); var_dump($ipInfos['data']); } function GetIpLookup($ip = ''){ if(empty($ip)){ $ip = GetIp(); } //$res = @file_get_contents('http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js&ip=' . $ip); $res = @file_get_contents('http://ip.taobao.com/service/getIpInfo.php?ip=' . $ip); if(empty($res)){ return false; } // $jsonMatches = array(); // preg_match('#\{.+?\}#', $res, $jsonMatches); // if(!isset($jsonMatches[0])){ return false; } // $json = json_decode($jsonMatches[0], true); // if(isset($json['ret']) && $json['ret'] == 1){ // $json['ip'] = $ip; // unset($json['ret']); // }else{ // return false; // } // return $json; return json_decode($res,true);}
//淘宝地址响应慢 但数据全 有城市代码 无国际代码
//新浪没有代码
php获取ip所在地址
最新推荐文章于 2017-02-20 14:52:17 发布