当前位置: 代码迷 >> PHP >> php利用QQ获取ip,省份,市
  详细解决方案

php利用QQ获取ip,省份,市

热度:342   发布时间:2012-12-24 10:43:14.0
php利用QQ获取ip,省,市
<?php 
 function get_ip_place(){   
  $ip=file_get_contents("http://fw.qq.com/ipaddress");     $ip=str_replace('"',' ',$ip);    
$ip2=explode("(",$ip);     
$a=substr($ip2[1],0,-2);   
  $b=explode(",",$a);     
return $b;    
}   
  $ip=get_ip_place();   
  print_r($ip); 
?>
  相关解决方案