您的位置:首页 > 其它

利用QQ去获得来访者的IP和省市

2011-04-11 13:32 274 查看
今天偶然发现,QQ居然有个地址http://fw.qq.com/ipaddress
可以获得来访的用户的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); ?>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: