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/mktime_basic1.phpt |
--TEST-- Test mktime() function : basic functionality --FILE-- <?php /* Prototype : int mktime ([ int $hour= date("H") [, int $minute= date("i") [, int $second= date("s") [, int $month= date("n") [, int $day= date("j") [, int $year= date("Y") [, int $is_dst= -1 ]]]]]]] ) * Description: Get Unix timestamp for a date * Source code: ext/date/php_date.c * Alias to functions: */ error_reporting(E_ALL | E_STRICT); //Set the default time zone date_default_timezone_set("Europe/London"); echo "*** Testing DateTime::modify() : basic functionality ***\n"; $hour = 10; $minute = 30; $sec = 45; $month = 7; $day = 2; $year = 1963; var_dump( mktime($hour) ); var_dump( mktime($hour, $minute) ); var_dump( mktime($hour, $minute, $sec) ); var_dump( mktime($hour, $minute, $sec, $month) ); var_dump( mktime($hour, $minute, $sec, $month, $day) ); var_dump( mktime($hour, $minute, $sec, $month, $day, $year) ); ?> ===DONE=== --EXPECTF-- *** Testing DateTime::modify() : basic functionality *** int(%i) int(%i) int(%i) int(%i) int(%i) int(%i) ===DONE===
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare