当前位置:首页 > PHP教程 > php函数 > 列表

php通过调用腾讯的API接口返回IP所有在城市名称

发布:smiling 来源: PHP粉丝网  添加日期:2014-07-31 15:52:14 浏览: 评论:0 
  1. <?php    
  2. /* 
  3. 调用腾讯的API接口 
  4. 返回结果 var IPData = new Array("114.238.55.147","","江苏省","淮安市"); 
  5. 0 为 IP地址 
  6. 1 为 null 
  7. 2 为 省份 
  8. 3 为 城市 
  9. */ 
  10. function get_ip_place(){    
  11.   $ip=file_get_contents("http://fw.qq.com/ipaddress");   
  12.   $ip=str_replace('"',' ',$ip);    
  13.   $ip2=explode("(",$ip);    
  14.   $a=substr($ip2[1],0,-2);    
  15.   $b=explode(",",$a);    
  16.   return $b;    
  17. }    
  18. $ip=get_ip_place();    
  19. print_r($ip);    
  20. print_r($ip[0]); // 这个就是你当前外网IP地址 
  21. print_r($ip[2]); // 这个就是你所在的省份 
  22. print_r($ip[3]); //这个就是你所在的城市了 
  23. ?> 

Tags: php接口 腾讯API IP城市名称

分享到: