????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.221.124.95 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/standard/tests/network/ |
Upload File : |
--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(4294967295) string(15) "255.255.255.255" int(4294967040) 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 %s on line %d NULL bool(false) bool(false) int(1869573999) Warning: ip2long() expects parameter 1 to be string, array given in %s on line %d NULL Warning: long2ip() expects exactly 1 parameter, 0 given in %s on line %d NULL string(13) "255.254.82.80" string(7) "0.0.0.0" Warning: long2ip() expects parameter 1 to be string, array given in %s on line %d NULL Done