????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.21.125.27 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-- inet_ntop() & inet_pton() IPv6 tests --SKIPIF-- <?php if (!function_exists("inet_ntop")) die("skip no inet_ntop()"); if (!function_exists("inet_pton")) die("skip no inet_pton()"); $packed = str_repeat(chr(0), 15) . chr(1); if (@inet_ntop($packed) === false) { die("skip no IPv6 support"); } if (stristr(PHP_OS, "darwin") !== false) die("skip MacOS has broken inet_*() funcs"); ?> --FILE-- <?php $a = array( '::1', '::2', '::35', '::255', '::1024', '', '2001:0db8:85a3:08d3:1319:8a2e:0370:7344', '2001:0db8:1234:0000:0000:0000:0000:0000', '2001:0db8:1234:FFFF:FFFF:FFFF:FFFF:FFFF', ); foreach ($a as $address) { $packed = inet_pton($address); var_dump(inet_ntop($packed)); } echo "Done\n"; ?> --EXPECTF-- string(3) "::1" string(3) "::2" string(4) "::35" string(5) "::255" string(6) "::1024" Warning: inet_pton(): Unrecognized address in %s on line %d Warning: inet_ntop(): Invalid in_addr value in %s on line %d bool(false) string(36) "2001:db8:85a3:8d3:1319:8a2e:370:7344" string(15) "2001:db8:1234::" string(38) "2001:db8:1234:ffff:ffff:ffff:ffff:ffff" Done