欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

IP2Long和Long2IP函数的PHP实现

程序员文章站 2024-02-05 14:51:04
...
php代码:
function IP2Long($ip) {
    $ips = explode('.', $ip);
    if(count($ips) != 4) {
        return false;
    }   
    return ($ips[0] << 24) + ($ips[1] << 16) + ($ips[2] << 8) + $ips[3];
}

function Long2IP($int) {
    $ip1 = $ipint >> 24; 
    $ip2 = ($ipint >> 16) & 255;
    $ip3 = ($ipint >> 8) & 255;
    $ip4 = $ipint & 255;
    return $ip1.'.'.$ip2.'.'.$ip3.'.'.$ip4;
}