PHP程序员站--PHP编程开发平台
 当前位置:主页 >> PHP基础 >> 基础文章 >> 

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

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

来源:PHP程序员站  作者:  发布时间:2011-03-06
今天偶然发现,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); $
今天偶然发现,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); ?>

延伸阅读:
PHP获取仿客IP地址的函数
查询吧php版读取纯真ip数据库源码
jQuery 如何获取浏览器所在的IP地址
Tags: QQ   来访者   ip  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号