mirror of
https://github.com/php/php-src.git
synced 2026-04-16 20:41:18 +02:00
PHP requires integer typehints to be written "int" and does not allow "integer" as an alias. This changes type error messages to match the actual type name and avoids confusing messages like "must be of the type integer, integer given".
70 lines
1.3 KiB
PHP
70 lines
1.3 KiB
PHP
--TEST--
|
|
ip2long() & long2ip() tests
|
|
--SKIPIF--
|
|
<?php
|
|
if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$array = array(
|
|
"127.0.0.1",
|
|
"10.0.0.1",
|
|
"255.255.255.255",
|
|
"255.255.255.0",
|
|
"0.0.0.0",
|
|
"66.163.161.116",
|
|
);
|
|
|
|
foreach ($array as $ip) {
|
|
var_dump($long = ip2long($ip));
|
|
var_dump(long2ip($long));
|
|
}
|
|
|
|
var_dump(ip2long());
|
|
var_dump(ip2long(""));
|
|
var_dump(ip2long("777.777.777.777"));
|
|
var_dump(ip2long("111.111.111.111"));
|
|
var_dump(ip2long(array()));
|
|
|
|
var_dump(long2ip());
|
|
var_dump(long2ip(-110000));
|
|
var_dump(long2ip(""));
|
|
var_dump(long2ip(array()));
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
int(2130706433)
|
|
string(9) "127.0.0.1"
|
|
int(167772161)
|
|
string(8) "10.0.0.1"
|
|
int(-1)
|
|
string(15) "255.255.255.255"
|
|
int(-256)
|
|
string(13) "255.255.255.0"
|
|
int(0)
|
|
string(7) "0.0.0.0"
|
|
int(1118019956)
|
|
string(14) "66.163.161.116"
|
|
|
|
Warning: ip2long() expects exactly 1 parameter, 0 given in %sip.php on line %d
|
|
NULL
|
|
bool(false)
|
|
bool(false)
|
|
int(1869573999)
|
|
|
|
Warning: ip2long() expects parameter 1 to be string, array given in %sip.php on line %d
|
|
NULL
|
|
|
|
Warning: long2ip() expects exactly 1 parameter, 0 given in %sip.php on line %d
|
|
NULL
|
|
string(13) "255.254.82.80"
|
|
|
|
Warning: long2ip() expects parameter 1 to be int, string given in %sip.php on line %d
|
|
NULL
|
|
|
|
Warning: long2ip() expects parameter 1 to be int, array given in %sip.php on line %d
|
|
NULL
|
|
Done
|