????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 216.73.216.238 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/sockets/tests/ |
Upload File : |
--TEST-- socket_import_stream: effects of closing --SKIPIF-- <?php if (!extension_loaded('sockets')) { die('SKIP sockets extension not available.'); } if(substr(PHP_OS, 0, 3) != 'WIN' ) { die("skip Not Valid for Linux"); } --FILE-- <?php function test($stream, $sock) { if ($stream !== null) { echo "stream_set_blocking "; print_r(stream_set_blocking($stream, 0)); echo "\n"; } if ($sock !== null) { echo "socket_set_block "; print_r(socket_set_block($sock)); echo "\n"; echo "socket_get_option "; print_r(socket_get_option($sock, SOL_SOCKET, SO_TYPE)); echo "\n"; } echo "\n"; } echo "normal\n"; $stream0 = stream_socket_server("udp://0.0.0.0:58380", $errno, $errstr, STREAM_SERVER_BIND); $sock0 = socket_import_stream($stream0); test($stream0, $sock0); echo "\nunset stream\n"; $stream1 = stream_socket_server("udp://0.0.0.0:58381", $errno, $errstr, STREAM_SERVER_BIND); $sock1 = socket_import_stream($stream1); unset($stream1); test(null, $sock1); echo "\nunset socket\n"; $stream2 = stream_socket_server("udp://0.0.0.0:58382", $errno, $errstr, STREAM_SERVER_BIND); $sock2 = socket_import_stream($stream2); unset($sock2); test($stream2, null); echo "\nclose stream\n"; $stream3 = stream_socket_server("udp://0.0.0.0:58383", $errno, $errstr, STREAM_SERVER_BIND); $sock3 = socket_import_stream($stream3); fclose($stream3); test($stream3, $sock3); echo "\nclose socket\n"; $stream4 = stream_socket_server("udp://0.0.0.0:58384", $errno, $errstr, STREAM_SERVER_BIND); $sock4 = socket_import_stream($stream4); socket_close($sock4); test($stream4, $sock4); echo "Done.\n"; --EXPECTF-- normal stream_set_blocking 1 socket_set_block 1 socket_get_option 2 unset stream socket_set_block 1 socket_get_option 2 unset socket stream_set_blocking 1 close stream stream_set_blocking Warning: stream_set_blocking(): %d is not a valid stream resource in %s on line %d socket_set_block Warning: socket_set_block(): unable to set blocking mode [%d]: An operation was attempted on something that is not a socket. in %ssocket_import_stream-4-win.php on line %d socket_get_option Warning: socket_get_option(): unable to retrieve socket option [%d]: An operation was attempted on something that is not a socket. in %ssocket_import_stream-4-win.php on line %d close socket stream_set_blocking Warning: stream_set_blocking(): %d is not a valid stream resource in %s on line %d socket_set_block Warning: socket_set_block(): %d is not a valid Socket resource in %s on line %d socket_get_option Warning: socket_get_option(): %d is not a valid Socket resource in %s on line %d Done.