php获取用户真实ip和淘宝ip接口获得ip地理位置-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 331567
  • 博文数量: 68
  • 博客积分: 405
  • 博客等级: 一等列兵
  • 技术积分: 1288
  • 用 户 组: 普通用户
  • 注册时间: 2013-01-09 15:39
个人简介

本人从事 linux nginx mysql php 开发多年,联系v:luhuang2003 ,希望接触到更新的web开发软件,开此博客希望能把自己的经验和接触的东西与大家进行共享。

文章分类

全部博文(68)

文章存档

2024年(1)

2013年(67)

我的朋友
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: web开发

2013-02-22 10:52:29

淘宝ip库: 地址


/**
 * 获取用户真实 ip
 */
function getip()
{
    static $realip;
    if (isset($_server)){
        if (isset($_server["http_x_forwarded_for"])){
            $realip = $_server["http_x_forwarded_for"];
        } else if (isset($_server["http_client_ip"])) {
            $realip = $_server["http_client_ip"];
        } else {
            $realip = $_server["remote_addr"];
        }
    } else {
        if (getenv("http_x_forwarded_for")){
            $realip = getenv("http_x_forwarded_for");
        } else if (getenv("http_client_ip")) {
            $realip = getenv("http_client_ip");
        } else {
            $realip = getenv("remote_addr");
        }
    }
 
 
    return $realip;
}
 
 
/**
 * 获取 ip  地理位置
 * 淘宝ip接口
 * @return: array
 */
function getcity($ip)
{
$url="".$ip;
$ip=json_decode(file_get_contents($url));
if((string)$ip->code=='1'){
  return false;
 }
 $data = (array)$ip->data;
return $data;
}
阅读(1582) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图