Heim  >  Artikel  >  Backend-Entwicklung  >  php利用新浪接口查询ip获取地理位置示例_PHP教程

php利用新浪接口查询ip获取地理位置示例_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:40:291043Durchsuche

复制代码 代码如下:

function getIPLoc_sina($queryIP){   
$url = 'http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip='.$queryIP;   
$ch = curl_init($url);    
curl_setopt($ch,CURLOPT_ENCODING ,'utf8');    
curl_setopt($ch, CURLOPT_TIMEOUT, 5);  
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true) ; // 获取数据返回 
$location = curl_exec($ch);   
$location = json_decode($location);   
curl_close($ch);        
$loc = "";  
if($location===FALSE) return "";    
if (empty($location->desc)) {   
$loc = $location->province.$location->city.$location->district.$location->isp; 
}else{         $loc = $location->desc;   
}   
return $loc;
}
echo getIPLoc_sina("183.37.209.57");
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/718616.htmlTechArticle复制代码 代码如下: ?php function getIPLoc_sina($queryIP){ $url = 'http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json $ch = curl_init($url); curl_setopt($ch,CURL...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn