您现在的位置是:首页 > 其他

李清波 2015-09-15 其他 55223 复制当前网址

PHP获取客户端IP的方法

        其实在网上使用PHP获取客户端IP的方法有很多种,我之前也收集了一些,不过我这里主要推荐的是thinkphp框架带的方法,毕竟我现在一直使用thinkphp框架,也一直使用它的方法


/**
 * 获取客户端IP地址
 * @param integer $type 返回类型 0 返回IP地址 1 返回IPV4地址数字
 * @return mixed
 */
function get_client_ip($type = 0) {
    $type       =  $type ? 1 : 0;
    static $ip  =   NULL;
    if ($ip !== NULL) return $ip[$type];
    if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
        $arr    =   explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']);
        $pos    =   array_search('unknown',$arr);
        if(false !== $pos) unset($arr[$pos]);
        $ip     =   trim($arr[0]);
    }elseif (isset($_SERVER['HTTP_CLIENT_IP'])) {
        $ip     =   $_SERVER['HTTP_CLIENT_IP'];
    }elseif (isset($_SERVER['REMOTE_ADDR'])) {
        $ip     =   $_SERVER['REMOTE_ADDR'];
    }
    // IP地址合法验证
    $long = sprintf("%u",ip2long($ip));
    $ip   = $long ? array($ip, $long) : array('0.0.0.0', 0);
    return $ip[$type];
}


以上就是thinkphp框架自带的获取客户端IP地址的函数,调用方法

get_client_ip();


里面的参数你自己也可以根据自己的需求选择是否添加。

文章来源:http://liqingbo.com/blog-4.html

评论