Heim >php教程 >php手册 >新浪通过IP地址获取当前地理位置(省份,城市等)的接口

新浪通过IP地址获取当前地理位置(省份,城市等)的接口

WBOY
WBOYOriginal
2016-06-06 19:37:271674Durchsuche

新浪通过IP地址获取当前地理位置(省份,城市等)的接口 无 function getIpAddress(){ $ipContent = file_get_contents("http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js"); $jsonData = explode("=",$ipContent); $jsonAddress = substr($json

新浪通过IP地址获取当前地理位置(省份,城市等)的接口 
	function getIpAddress(){  
		$ipContent   = file_get_contents("http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js");  
		$jsonData = explode("=",$ipContent);    
		$jsonAddress = substr($jsonData[1], 0, -1);  
		return $jsonAddress;  
	}  
	$ip_info=json_decode(getIpAddress());	
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