php通过调用腾讯的API接口返回IP所有在城市名称
发布:smiling 来源: PHP粉丝网 添加日期:2014-07-31 15:52:14 浏览: 评论:0
- <?php
- /*
- 调用腾讯的API接口
- 返回结果 var IPData = new Array("114.238.55.147","","江苏省","淮安市");
- 0 为 IP地址
- 1 为 null
- 2 为 省份
- 3 为 城市
- */
- 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);
- print_r($ip[0]); // 这个就是你当前外网IP地址
- print_r($ip[2]); // 这个就是你所在的省份
- print_r($ip[3]); //这个就是你所在的城市了
- ?>
Tags: php接口 腾讯API IP城市名称
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)