????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 13.58.67.129 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/streams/ |
Upload File : |
--TEST-- Test stream_set_timeout() function : error conditions --FILE-- <?php /* Prototype : proto bool stream_set_timeout(resource stream, int seconds, int microseconds) * Description: Set timeout on stream read to seconds + microseonds * Source code: ext/standard/streamsfuncs.c * Alias to functions: socket_set_timeout */ echo "*** Testing stream_set_timeout() : error conditions ***\n"; //Test stream_set_timeout with one more than the expected number of arguments echo "\n-- Testing stream_set_timeout() function with more than expected no. of arguments --\n"; for ($i=0; $i<100; $i++) { $port = rand(10000, 65000); /* Setup socket server */ $server = @stream_socket_server("tcp://127.0.0.1:$port"); if ($server) { break; } } /* Connect to it */ $client = fsockopen("tcp://127.0.0.1:$port"); $seconds = 10; $microseconds = 10; $extra_arg = 10; var_dump( stream_set_timeout($client, $seconds, $microseconds, $extra_arg) ); // Testing stream_set_timeout with one less than the expected number of arguments echo "\n-- Testing stream_set_timeout() function with less than expected no. of arguments --\n"; $seconds = 10; var_dump( stream_set_timeout($client) ); echo "\n-- Testing stream_set_timeout() function with a closed socket --\n"; fclose($client); var_dump( stream_set_timeout($client, $seconds) ); echo "\n-- Testing stream_set_timeout() function with an invalid stream --\n"; var_dump( stream_set_timeout($seconds, $seconds) ); echo "\n-- Testing stream_set_timeout() function with a stream that does not support timeouts --\n"; $filestream = fopen(__FILE__, "r"); var_dump( stream_set_timeout($filestream, $seconds) ); fclose($filestream); fclose($server); echo "Done"; ?> --EXPECTF-- *** Testing stream_set_timeout() : error conditions *** -- Testing stream_set_timeout() function with more than expected no. of arguments -- Warning: stream_set_timeout() expects at most 3 parameters, 4 given in %s on line %i NULL -- Testing stream_set_timeout() function with less than expected no. of arguments -- Warning: stream_set_timeout() expects at least 2 parameters, 1 given in %s on line %i NULL -- Testing stream_set_timeout() function with a closed socket -- Warning: stream_set_timeout(): %i is not a valid stream resource in %s on line %i bool(false) -- Testing stream_set_timeout() function with an invalid stream -- Warning: stream_set_timeout() expects parameter 1 to be resource, integer given in %s on line %i NULL -- Testing stream_set_timeout() function with a stream that does not support timeouts -- bool(false) Done