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

  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. ?>