ip2long

(PHP 4, PHP 5)

ip2longКонвертирует строку, содержащую (IPv4) Интернет адрес с точками в допустимый адрес

Описание

int ip2long ( string $ip_address )

Функция ip2long() преобразует IPv4 адрес Интернет сети из стандартного формата (строка с точками).

Функция ip2long() также будет работать с неполными IP адресами. См. » http://publibn.boulder.ibm.com/doc_link/en_US/a_doc_lib/libs/commtrf2/inet_addr.htm для более подобной информации.

Список параметров

ip_address

Адрес в стандартном формате.

Возвращаемые значения

Возвращает IPv4 адрес или FALSE, если параметр ip_address содержит ошибку.

Список изменений

Версия Описание
5.2.10 До этой версии функция ip2long() могла иногда возвращать верное число, даже если отправленное значение не было Интернет адресом (IPv4) в точечном формате.
5.0.0 До этой версии функция ip2long() возвращала -1 при ошибке.

Примеры

Пример #1 Пример использования ip2long()

<?php
$ip 
gethostbyname('www.example.com');
$out "Следующие URL эквивалентны:<br />\n";
$out .= 'http://www.example.com/, http://' $ip '/, and http://' sprintf("%u"ip2long($ip)) . "/<br />\n";
echo 
$out;
?>

Пример #2 Отображение IP адресов

Второй пример показывает как выводить сконвертированные адреса с помощью функции printf() как в PHP 4 так и в PHP 5:

<?php
$ip   
gethostbyname('www.example.com');
$long ip2long($ip);

if (
$long == -|| $long === FALSE) {
    echo 
'Неверный IP, попробуйте еще раз';
} else {
    echo 
$ip   "\n";           // 192.0.34.166
    
echo $long "\n";           // -1073732954
    
printf("%u\n"ip2long($ip)); // 3221234342
}
?>

Примечания

Замечание:

Ввиду того, что PHP тип integer является знаковым, и на 32-битных системах большое количество IP адресов будет представлено в виде отрицательных чисел, необходимо использовать "%u" в функции sprintf() или printf() для получения IP адреса в строковом беззнаковом виде.

Замечание:

Функция ip2long() возвратит FALSE для IP 255.255.255.255 в PHP 5 <= 5.0.2. Это было исправлено в PHP 5.0.3, теперь возвращается -1 (как и в PHP 4).

Смотрите также

  • long2ip() - Конвертирует (IPv4) адрес Интернет сети в стандартную строку с точками
  • sprintf() - Возвращает отформатированную строку

Коментарии

Автор:
I re-wrote the functions from jbothe at hotmail dot com as a little exercise in OO and added a couple of extra functions.

<?php

 
//--------------
// IPv4 class
class ipv4
{
  var 
$address;
  var 
$netbits;

   
//--------------
  // Create new class
 
function ipv4($address,$netbits)
  {
   
$this->address $address;
   
$this->netbits $netbits;
  }

   
//--------------
  // Return the IP address
 
function address() { return ($this->address); }

   
//--------------
  // Return the netbits
 
function netbits() { return ($this->netbits); }

   
//--------------
  // Return the netmask
 
function netmask()
  {
    return (
long2ip(ip2long("255.255.255.255")
           << (
32-$this->netbits)));
  }

   
//--------------
  // Return the network that the address sits in
 
function network()
  {
    return (
long2ip((ip2long($this->address))
           & (
ip2long($this->netmask()))));
  }

   
//--------------
  // Return the broadcast that the address sits in
 
function broadcast()
  {
    return (
long2ip(ip2long($this->network())
           | (~(
ip2long($this->netmask())))));
  }

   
//--------------
  // Return the inverse mask of the netmask
 
function inverse()
  {
    return (
long2ip(~(ip2long("255.255.255.255")
           << (
32-$this->netbits))));
  }

}

 
$ip = new ipv4("192.168.2.1",24);
  print 
"Address: $ip->address()\n";
  print 
"Netbits: $ip->netbits()\n";
  print 
"Netmask: $ip->netmask()\n";
  print 
"Inverse: $ip->inverse()\n";
  print 
"Network: $ip->network()\n";
  print 
"Broadcast: $ip->broadcast()\n";
?>
2004-12-01 08:06:00
http://php5.kiev.ua/manual/ru/function.ip2long.html
Below is a merged form of all various notes, and a better (and correct) network matching function.

<?php

function net_match($network$ip) {
     
// determines if a network in the form of 192.168.17.1/16 or
      // 127.0.0.1/255.255.255.255 or 10.0.0.1 matches a given ip
     
$ip_arr explode('/'$network);
     
$network_long ip2long($ip_arr[0]);

     
$x ip2long($ip_arr[1]);
     
$mask long2ip($x) == $ip_arr[1] ? $x 0xffffffff << (32 $ip_arr[1]);
     
$ip_long ip2long($ip);

     
// echo ">".$ip_arr[1]."> ".decbin($mask)."\n";
     
return ($ip_long $mask) == ($network_long $mask);
}

echo 
net_match('192.168.17.1/16''192.168.15.1')."\n"// returns true
echo net_match('127.0.0.1/255.255.255.255''127.0.0.2')."\n"// returns false
echo net_match('10.0.0.1''10.0.0.1')."\n"// returns true

?>
2005-08-31 18:31:52
http://php5.kiev.ua/manual/ru/function.ip2long.html
Автор:
NOTE: ip2long() should NOT be used for CIDR calculation. 
Instead, you should use something like the following:

<?php
       
/* get the base and the bits from the ban in the database */
       
list($base$bits) = explode('/'$CIDR);

       
/* now split it up into it's classes */
       
list($a$b$c$d) = explode('.'$base);

       
/* now do some bit shfiting/switching to convert to ints */
       
$i = ($a << 24) + ($b << 16) + ($c << 8) + $d;
       
$mask $bits == : (~<< (32 $bits));

       
/* here's our lowest int */
       
$low $i $mask;

       
/* here's our highest int */
       
$high $i | (~$mask 0xFFFFFFFF);

       
/* now split the ip were checking against up into classes */
       
list($a$b$c$d) = explode('.'$iptocheck);

       
/* now convert the ip we're checking against to an int */
       
$check = ($a << 24) + ($b << 16) + ($c << 8) + $d;

       
/* if the ip is within the range, including 
      highest/lowest values, then it's witin the CIDR range */
       
if ($check >= $low && $check <= $high)
            return 
1;
       else
            return 
0;
?>

This means that you should check to see if the IP
address is of the correct format each time.
2006-12-24 06:22:24
http://php5.kiev.ua/manual/ru/function.ip2long.html
Just to save you some time.

Beware that octets in IP address are being treated as numbers. So, '10.0.0.11' is not equal to '10.0.0.011'. '011' is octal number (base 8), so it converts to '9'. You can even go further and see that '10.0.0.0xa' also works (equals to '10.0.0.16'). 

This is not PHP issue, though.
2007-02-16 03:06:08
http://php5.kiev.ua/manual/ru/function.ip2long.html
I wrote a small function to validate a netmask (We have a form where the netmask of a given server is entered in, and I wanted to make sure it was valid). Hope this is useful.

<?php
// Netmask Validator //
function checkNetmask($ip) {
 if (!
ip2long($ip)) {
  return 
false;
 } elseif(
strlen(decbin(ip2long($ip))) != 32 && ip2long($ip) != 0) {
  return 
false;
 } elseif(
ereg('01',decbin(ip2long($ip))) || !ereg('0',decbin(ip2long($ip)))) {
  return 
false;
 } else {
  return 
true;
 }
}
?>
2007-04-02 10:49:00
http://php5.kiev.ua/manual/ru/function.ip2long.html
Keep in mind that storing IP addresses inside of your database as integers (rather than 15 character strings in decimal format, or 8 character strings in hex format) is hundreds of times faster.

Take the typical case of a MySQL database doing a search for an IP address on thousands (or millions!) of rows; you're either doing a string compare for each entry, or an integer equation. If you do your indexes correctly, your lookups should be literally 100x faster using an INT rather than a VARCHAR.

Also note that an integer doesn't need to be escaped when passed to a database. :)
2007-10-21 02:54:56
http://php5.kiev.ua/manual/ru/function.ip2long.html
To nate, who advises that there is no reason to use an unsigned version of the IP in a MySQL DB:

I think it would depend on your application, but personally, I find it useful to store IP's as unsigneds since MySQL has 2 native functions, INET_ATON() and INET_NTOA(), which work the same as ip2long()/long2ip() _except_ that they generate the unsigned counterpart. So if you want, you could do:

-- IANA Class-B reserved/private
SELECT * FROM `servers` 
WHERE `ip` >= INET_ATON('192.168.0.0') 
AND `ip` <= INET_ATON('192.168.255.255');

In my current application, I find it easier to use the MySQL built-ins than the PHP counter-parts. 

In case you're curious as to the names ATON and NTOA:

ATON = address to number aka. ip2long
NTOA = number to address aka. long2ip
2008-04-01 13:02:32
http://php5.kiev.ua/manual/ru/function.ip2long.html
In using a combination of jbothe's code below and some of the "$mask = 0xFFFFFFFF << (32 - $bits)" type code, I ran into an error with some later calculations on a 64 bit machine.

Keep in mind that when you're analyzing numbers meant to be treated as 32 bits wide (such as IP addresses), you may want to truncate them. Without relying on other libraries, it was simple enough to follow any calculations that may end with different results on a 64 bit machine with " & 0xFFFFFFFF"

Though in many cases, it seems like it might be simpler to just use "~0 << ..." for initial shifting to create the network mask instead of "0xFFFFFFFF << ...". I don't know that it guarantees further operations to work as expected though.
2008-05-20 18:10:33
http://php5.kiev.ua/manual/ru/function.ip2long.html
I had a problem with calling this function with REMOTE_ADDR on my lighttpd web server. Turned out that IPv6 was installed on this server, so even though REMOTE_ADDR was an IPv4 address, it was being formatted using IPv6's IPv4 compatibility mode. For example, 10.0.0.1 was becoming ::ffff:10.0.0.1, which caused iplong to report the address as invalid instead of parsing it correctly.

The correct fix would of course be to update my infrastructure so that it's properly IPv6-compatible; but in the context of my particular situation, this would involve a lot of re-engineering. So in the meantime, I worked around the issue using this quick and dirty hack:

<?php
    $ip 
htmlspecialchars($_SERVER['REMOTE_ADDR']);
    if (
strpos($ip'::') === 0) {
       
$ip substr($ipstrrpos($ip':')+1);
    }
   
$host ip2long($ip);
?>

Ugly but functional.
2008-05-30 22:36:13
http://php5.kiev.ua/manual/ru/function.ip2long.html
Just want to add a comment to kaputt's valuable contribution to the task of matching hosts to ip ranges, efficiently.  The script works fine if the binary representation of the ip involves no leading zeros.  Unfortunately, the way decbin() seems to work, leading zeros in the binary representation of the first ip quad get dropped.  That is a serious matter if you're trying to match all possible candidates in the checklist.  In those cases the leading zeros need to be added back to get accurate matches for values in the first quad between 0-127 (or the binary equivalent, 0-01111111).

The solution I came up with to address this issue was the following function:

<?php
function addLeadingZero($ip) {
   if ((
$result = (32 strlen($ip))) > 0)
      return 
str_repeat("0"$result).$ip;
}
?>
2009-04-16 22:51:00
http://php5.kiev.ua/manual/ru/function.ip2long.html
I wanted to build on what kaputt and spinyn contributed in a way that I think is a little more intuitive (e.g., let sprintf do all the binary conversion and padding, and let substr_compare do the trimming and comparing):

<?php
function ip_in_network($ip$net_addr$net_mask){
    if(
$net_mask <= 0){ return false; }
       
$ip_binary_string sprintf("%032b",ip2long($ip));
       
$net_binary_string sprintf("%032b",ip2long($net_addr));
        return (
substr_compare($ip_binary_string,$net_binary_string,0,$net_mask) === 0);
}

ip_in_network("192.168.2.1","192.168.2.0",24); //true
ip_in_network("192.168.6.93","192.168.0.0",16); //true
ip_in_network("1.6.6.6","128.168.2.0",1); //false
?>
2009-07-28 18:41:46
http://php5.kiev.ua/manual/ru/function.ip2long.html
To get the network adress out of the broadcast adress and netmask just to an AND on it:

<?php
// simple example
$bcast ip2long("192.168.178.255");
$smask ip2long("255.255.255.0");
$nmask $bcast $smask;
echo 
long2ip($nmask); // Will give 192.168.178.0
?>

With this example you are able to check if a given host is in your own local net or not (on linux):

<?php
/**
 * Check if a client IP is in our Server subnet
 *
 * @param string $client_ip
 * @param string $server_ip
 * @return boolean
 */
function clientInSameSubnet($client_ip=false,$server_ip=false) {
    if (!
$client_ip)
       
$client_ip $_SERVER['REMOTE_ADDR'];
    if (!
$server_ip)
       
$server_ip $_SERVER['SERVER_ADDR'];
   
// Extract broadcast and netmask from ifconfig
   
if (!($p popen("ifconfig","r"))) return false;
   
$out "";
    while(!
feof($p))
       
$out .= fread($p,1024);
   
fclose($p);
   
// This is because the php.net comment function does not
    // allow long lines.
   
$match  "/^.*".$server_ip;
   
$match .= ".*Bcast:(\d{1,3}\.\d{1,3}i\.\d{1,3}\.\d{1,3}).*";
   
$match .= "Mask:(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/im";
    if (!
preg_match($match,$out,$regs))
        return 
false;
   
$bcast ip2long($regs[1]);
   
$smask ip2long($regs[2]);
   
$ipadr ip2long($client_ip);
   
$nmask $bcast $smask;
    return ((
$ipadr $smask) == ($nmask $smask));
}
?>
2009-10-27 08:41:16
http://php5.kiev.ua/manual/ru/function.ip2long.html
Here some working ip2long6 and long2ip6 functions - keep in mind that this needs php gmp-lib:

<?php

$ipv6 
"2001:4860:a005::68";

function 
ip2long6($ipv6) {
 
$ip_n inet_pton($ipv6);
 
$bits 15// 16 x 8 bit = 128bit
 
while ($bits >= 0) {
   
$bin sprintf("%08b",(ord($ip_n[$bits])));
   
$ipv6long $bin.$ipv6long;
   
$bits--;
  }
  return 
gmp_strval(gmp_init($ipv6long,2),10);
}

function 
long2ip6($ipv6long) {

 
$bin gmp_strval(gmp_init($ipv6long,10),2);
  if (
strlen($bin) < 128) {
   
$pad 128 strlen($bin);
    for (
$i 1$i <= $pad$i++) {
   
$bin "0".$bin;
    }
  }
 
$bits 0;
  while (
$bits <= 7) {
   
$bin_part substr($bin,($bits*16),16);
   
$ipv6 .= dechex(bindec($bin_part)).":";
   
$bits++;
  }
 
// compress

 
return inet_ntop(inet_pton(substr($ipv6,0,-1)));
}

print 
$ipv6long ip2long6($ipv6)."\n";
print 
$ipv6 long2ip6($ipv6long)."\n";

?>

outputs:

42541956150894553250710573749450571880
2001:4860:a005::68
2009-11-07 08:12:01
http://php5.kiev.ua/manual/ru/function.ip2long.html
A quick method to convert a netmask (ex: 255.255.255.240) to a cidr mask (ex: /28):

<?php
function mask2cidr($mask){
 
$long ip2long($mask);
 
$base ip2long('255.255.255.255');
  return 
32-log(($long $base)+1,2);

 
/* xor-ing will give you the inverse mask,
      log base 2 of that +1 will return the number
      of bits that are off in the mask and subtracting
      from 32 gets you the cidr notation */
       
}
?>
2009-11-24 19:45:31
http://php5.kiev.ua/manual/ru/function.ip2long.html
Universal ip4/ip6

<?php
// encoded --
function encode_ip ($ip)
{
   
$d explode('.'$ip);
    if (
count($d) == 4) return sprintf('%02x%02x%02x%02x'$d[0], $d[1], $d[2], $d[3]);
 
   
$d explode(':'preg_replace('/(^:)|(:$)/'''$ip));
   
$res '';
    foreach (
$d as $x)
       
$res .= sprintf('%0'. ($x == '' ? (count($d)) * 4) .'s'$x);
    return 
$res;
}

// decoded
function decode_ip($int_ip)
{
    function 
hexhex($value) { return dechex(hexdec($value)); };
 
    if (
strlen($int_ip) == 32) {
       
$int_ip substr(chunk_split($int_ip4':'), 039);
       
$int_ip ':'implode(':'array_map("hexhex"explode(':',$int_ip))) .':';
       
preg_match_all("/(:0)+/"$int_ip$zeros);
        if (
count($zeros[0]) > 0) {
           
$match '';
            foreach(
$zeros[0] as $zero)
                if (
strlen($zero) > strlen($match))
                   
$match $zero;
           
$int_ip preg_replace('/'$match .'/'':'$int_ip1);
        }
        return 
preg_replace('/(^:([^:]))|(([^:]):$)/''$2$4'$int_ip);
    }
   
$hexipbang explode('.'chunk_split($int_ip2'.'));
    return 
hexdec($hexipbang[0]). '.' hexdec($hexipbang[1]) . '.' hexdec($hexipbang[2]) . '.' hexdec($hexipbang[3]);
}
?>

DB:
`user_ip` varchar(32) DEFAULT NULL
2011-12-03 21:06:40
http://php5.kiev.ua/manual/ru/function.ip2long.html
Be aware when you're running 64bit system, ip2long will result 64 bit integer which doesn't fit in MySQL INT, you can use BIGINT or INT UNSIGNED because on 64bit systems ip2long will never return negative integer. See also https://bugs.php.net/bug.php?id=54338
2012-04-26 16:09:41
http://php5.kiev.ua/manual/ru/function.ip2long.html
Автор:
Unfortunately sprintf('%u', ...) is low and returns string representation of integer value instead of integer.
Here is a function I use to convert IP to mySQL-compatible signed integer:

function ip2int($ip) {
  if (!$r = ip2long($ip)) return 0; // we want 0 instead of false, even in case of bad IP
  if ($r > 2147483647)
      $r-= 4294967296;
  return $r; // ok
}
2012-05-07 20:30:43
http://php5.kiev.ua/manual/ru/function.ip2long.html
Hi,
based on examples above I have mixed class IPFilter with netMatch function wich gives me complete class for IP4 check including CIDR IP format:

<?php
class IP4Filter {

    private static 
$_IP_TYPE_SINGLE 'single';
    private static 
$_IP_TYPE_WILDCARD 'wildcard';
    private static 
$_IP_TYPE_MASK 'mask';
    private static 
$_IP_TYPE_CIDR 'CIDR';
    private static 
$_IP_TYPE_SECTION 'section';
    private 
$_allowed_ips = array();

    public function 
__construct($allowed_ips) {
       
$this->_allowed_ips $allowed_ips;
    }

    public function 
check($ip$allowed_ips null) {
       
$allowed_ips $allowed_ips $allowed_ips $this->_allowed_ips;

        foreach (
$allowed_ips as $allowed_ip) {
           
$type $this->_judge_ip_type($allowed_ip);
           
$sub_rst call_user_func(array($this'_sub_checker_' $type), $allowed_ip$ip);

            if (
$sub_rst) {
                return 
true;
            }
        }

        return 
false;
    }

    private function 
_judge_ip_type($ip) {
        if (
strpos($ip'*')) {
            return 
self :: $_IP_TYPE_WILDCARD;
        }

        if (
strpos($ip'/')) {
           
$tmp explode('/'$ip);
            if (
strpos($tmp[1], '.')) {
                return 
self :: $_IP_TYPE_MASK;
            } else {
                return 
self :: $_IP_TYPE_CIDR;
            }
        }

        if (
strpos($ip'-')) {
            return 
self :: $_IP_TYPE_SECTION;
        }

        if (
ip2long($ip)) {
            return 
self :: $_IP_TYPE_SINGLE;
        }

        return 
false;
    }

    private function 
_sub_checker_single($allowed_ip$ip) {
        return (
ip2long($allowed_ip) == ip2long($ip));
    }

    private function 
_sub_checker_wildcard($allowed_ip$ip) {
       
$allowed_ip_arr explode('.'$allowed_ip);
       
$ip_arr explode('.'$ip);
        for (
$i 0$i count($allowed_ip_arr); $i++) {
            if (
$allowed_ip_arr[$i] == '*') {
                return 
true;
            } else {
                if (
false == ($allowed_ip_arr[$i] == $ip_arr[$i])) {
                    return 
false;
                }
            }
        }
    }

    private function 
_sub_checker_mask($allowed_ip$ip) {
        list(
$allowed_ip_ip$allowed_ip_mask) = explode('/'$allowed_ip);
       
$begin = (ip2long($allowed_ip_ip) & ip2long($allowed_ip_mask)) + 1;
       
$end = (ip2long($allowed_ip_ip) | (~ ip2long($allowed_ip_mask))) + 1;
       
$ip ip2long($ip);
        return (
$ip >= $begin && $ip <= $end);
    }

    private function 
_sub_checker_section($allowed_ip$ip) {
        list(
$begin$end) = explode('-'$allowed_ip);
       
$begin ip2long($begin);
       
$end ip2long($end);
       
$ip ip2long($ip);
        return (
$ip >= $begin && $ip <= $end);
    }

    private function 
_sub_checker_CIDR($CIDR$IP) {
        list (
$net$mask) = explode('/'$CIDR);
        return ( 
ip2long($IP) & ~((<< (32 $mask)) - 1) ) == ip2long($net);
    }

}
?>

For me this code works great, so I wanna thank to all You guys!!!
2012-05-26 16:28:41
http://php5.kiev.ua/manual/ru/function.ip2long.html
<?php

/**
  *
  *get the first ip and last ip from cidr(network id and mask length)
  * i will integrate this function into "Rong Framework" :)
  * @author admin@wudimei.com
  * @param string $cidr 56.15.0.6/16 , [network id]/[mask length]
  * @return array $ipArray = array( 0 =>"first ip of the network", 1=>"last ip of the network" );
  *                         Each element of $ipArray's type is long int,use long2ip( $ipArray[0] ) to convert it into ip string.
  * example:
  * list( $long_startIp , $long_endIp) = getIpRange( "56.15.0.6/16" );
  * echo "start ip:" . long2ip( $long_startIp );
  * echo "<br />";
  * echo "end ip:" . long2ip( $long_endIp );
  */

 
function getIpRang$cidr) {

   list(
$ip$mask) = explode('/'$cidr);
 
   
$maskBinStr =str_repeat("1"$mask ) . str_repeat("0"32-$mask );      //net mask binary string
   
$inverseMaskBinStr str_repeat("0"$mask ) . str_repeat("1"32-$mask ); //inverse mask
   
   
$ipLong ip2long$ip );
   
$ipMaskLong bindec$maskBinStr );
   
$inverseIpMaskLong bindec$inverseMaskBinStr );
   
$netWork $ipLong $ipMaskLong

   
$start $netWork+1;//去掉网络号 ,ignore network ID(eg: 192.168.1.0)
 
   
$end = ($netWork $inverseIpMaskLong) -//去掉广播地址 ignore brocast IP(eg: 192.168.1.255)
   
return array( $start$end );
}
?>
2012-07-04 05:42:50
http://php5.kiev.ua/manual/ru/function.ip2long.html
As pointed out by others, this function's return value is not consistent on 32 and 64-bit platforms.

Your best bet for consistent behavior across 32/64-bit platforms (and Windows) is the lowest common denominator: force the return value of ip2long() into a signed 32-bit integer, e.g.:

    var_dump(unpack('l', pack('l', ip2long('255.255.255.0'))));

This looks idiotic, but it gives you a consistent signed integer value on all platforms.

(the arguments to both pack() and unpack() are the lower-case letter "L", not the number "1", in case it looks that way on your screen...)
2013-08-27 17:54:58
http://php5.kiev.ua/manual/ru/function.ip2long.html
If you want to validate IPs using this function, please be careful:
The function filter_var should be used instead for validating IPs.

<?php
$ip 
'192.168.0355.24';
var_dump(ip2long($ip) !== false); // true (expected false)
var_dump(filter_var($ipFILTER_VALIDATE_IP) !== false); // false

$ip '192.168.355.24';
var_dump(ip2long($ip) !== false); // false
var_dump(filter_var($ipFILTER_VALIDATE_IP) !== false); // false
?>
2014-01-08 12:30:58
http://php5.kiev.ua/manual/ru/function.ip2long.html
Автор:
The manual states that "ip2long() will also work with non-complete IP addresses", however this is system-dependant so cannot be relied upon. For example, on my system ip2long() will return FALSE for incomplete addresses:

<?php
var_dump
(ip2long("255.255")); // bool(false)
?>

This is because ip2long will use inet_pton if available, which does not support non-complete addresses. If inet_pton is not available on your system, inet_addr will be used and incomplete addresses will work as stated.
2014-09-18 17:01:15
http://php5.kiev.ua/manual/ru/function.ip2long.html
Here are my versions of prefix to mask and mask to prefix conversions. You can remove first lines with if/preg of each function if you don't want sanity precheck.

    function prefix2Mask($prefix)
    {
        if (!preg_match('#^(?:0*[0-2]?[0-9]|3[0-2])$#', $prefix)) return false; # wrong prefix
        return long2ip(0xffffffff << (32 - $prefix));
    }
   
    function mask2Prefix($mask)
    {
        if (!preg_match('#^(?:(?:[0-1][0-9][0-9]|2[0-4][0-9]|25[0-5]|[0-9][0-9]|[0-9])\.){3}'.
            '(?:[0-1][0-9][0-9]|2[0-4][0-9]|25[0-5]|[0-9][0-9]|[0-9])$#', $mask))
            return false; # wrong mask
        $m2p = str_pad(substr(decbin(ip2long($mask)), -32, 32), 32, '0', STR_PAD_LEFT);
        if (!preg_match('#^(1*)0*$#', $m2p, $m)) return false; # wrong mask
        return strlen($m[1]);
    }
2016-09-14 11:52:06
http://php5.kiev.ua/manual/ru/function.ip2long.html
Автор:
<?php
/*
     Given an IP address and Subnet Mask, 
     determine the subnet address, broadcast address, and wildcard mask
     by using bitwise operators

     ref:  language.operators.bitwise
*/

$ip='10.10.10.7';
$mask='255.255.255.0';
$wcmask=long2ip( ~ip2long($mask) );
$subnet=long2ipip2long($ip) & ip2long($mask) );
$bcast=long2ipip2long($ip) | ip2long($wcmask) );
echo 
"Given address $ip and mask $mask, \n" 
"the subnet is $subnet and broadcast is $bcast \n" 
"with a wildcard mask of $wcmask";

/*
Given address 10.10.10.7 and mask 255.255.255.0, 
the subnet is 10.10.10.0 and broadcast is 10.10.10.255 
with a wildcard mask of 0.0.0.255
*/

?>
2017-10-14 03:16:42
http://php5.kiev.ua/manual/ru/function.ip2long.html
Автор:
sorry i just wrote wrong, sorry. this is the right one. thanks.

<?php
/**
 * convert cidr to ip range
 * From: <https://github.com/www-schat-top>
 * @param  string $cidr "192.168.0.0/23"
 * @return array  ["192.168.0.0", "192.168.1.255"]
 */
function cidr2range($cidr){
   list( 
$subnet$mask ) = explode'/'$cidr );
   return [
$subnetlong2ip(ip2long$subnet ) | (pow(2,( 32 $mask ))-1))];
}
?>
2019-05-10 14:20:36
http://php5.kiev.ua/manual/ru/function.ip2long.html

    Поддержать сайт на родительском проекте КГБ