Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/standard/tests/general_functions/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/standard/tests/general_functions/usleep_error.phpt |
--TEST-- Test usleep() function : error conditions --FILE-- <?php /* Prototype : void usleep ( int $micro_seconds ) * Description: Delays program execution for the given number of micro seconds. * Source code: ext/standard/basic_functions.c */ set_time_limit(20); echo "*** Testing usleep() : error conditions ***\n"; echo "\n-- Testing usleep() function with zero arguments --\n"; var_dump( usleep() ); echo "\n-- Testing usleep() function with more than expected no. of arguments --\n"; $seconds = 10; $extra_arg = 10; var_dump( usleep($seconds, $extra_arg) ); echo "\n-- Testing usleep() function with negative interval --\n"; $seconds = -10; var_dump( usleep($seconds) ); ?> ===DONE=== --EXPECTF-- *** Testing usleep() : error conditions *** -- Testing usleep() function with zero arguments -- Warning: usleep() expects exactly 1 parameter, 0 given in %s on line %d NULL -- Testing usleep() function with more than expected no. of arguments -- Warning: usleep() expects exactly 1 parameter, 2 given in %s on line %d NULL -- Testing usleep() function with negative interval -- Warning: usleep(): Number of microseconds must be greater than or equal to 0 in %s on line %d bool(false) ===DONE===
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare