z7369 发表于 2017-4-6 12:57:36

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,0,-2);   
$b=explode(",",$a);   
return $b;   
}   
$ip=get_ip_place();   
print_r($ip);
?>
页: [1]
查看完整版本: php利用QQ获取ip,省,市