今天偶然发现,QQ居然有个地址http://fw.qq.com/ipaddress 可以获得来访的用户的IP地址和省,市
function get_ip_place(){
$ip=file_get_contents("http://fw.qq.com/ipaddress");
$ip=str_replace('"',' ',$ip);
$ip2=explode("(",$ip);
$a=substr($ip2[1],-2);
$b=explode(",",$a);
return $b;
}
$ip=get_ip_place();
print_r($ip);
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
原文链接:https://www.f2er.com/php/527913.html