diff options
Diffstat (limited to 'ext/date/tests/mktime_basic1.phpt')
| -rw-r--r-- | ext/date/tests/mktime_basic1.phpt | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/ext/date/tests/mktime_basic1.phpt b/ext/date/tests/mktime_basic1.phpt new file mode 100644 index 0000000..dc17c29 --- /dev/null +++ b/ext/date/tests/mktime_basic1.phpt @@ -0,0 +1,47 @@ +--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; +$is_dst = 0; + +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) ); +var_dump( mktime($hour, $minute, $sec, $month, $day, $year, $is_dst) ); + +?> +===DONE=== +--EXPECTF-- +*** Testing DateTime::modify() : basic functionality *** +int(%i) +int(%i) +int(%i) +int(%i) +int(%i) +int(%i) + +Deprecated: mktime(): The is_dst parameter is deprecated in %s on line %d +int(%i) +===DONE=== + |
