威望0
积分7946
贡献0
在线时间762 小时
UID1
注册时间2021-4-14
最后登录2024-11-21
管理员
- UID
- 1
- 威望
- 0
- 积分
- 7946
- 贡献
- 0
- 注册时间
- 2021-4-14
- 最后登录
- 2024-11-21
- 在线时间
- 762 小时
|
- <?php
- header("Content-type: text/html; charset=utf-8");
-
- //取IP信息
- function getIpAddress($ip=""){
- $url = "http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js";
- if($ip!="")$url .= "&ip=".$ip;
- $ipContent = file_get_contents($url);
- $jsonData = explode("=",$ipContent);
- $jsonAddress = substr($jsonData[1], 0, -1);
- return $jsonAddress;
- }
- //返回IP的地理地址
- function showIpAddress($ip=""){
- if($ip){
- $cityArray = getIpAddress($ip);
- $city_json = json_decode($cityArray,TRUE);
- $address = $city_json['country'].''.$city_json['province'].''.$city_json['city'];
- return $address;
- }else{
- return '';
- }
- }
- $ip = '119.134.90.110';
- //echo getIpAddress($ip);
- //echo '<br>';
- echo showIpAddress($ip);
- echo '<br>';
- ?>
复制代码 |
|