diff options
| author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2013-03-14 05:42:27 +0000 |
|---|---|---|
| committer | <> | 2013-04-03 16:25:08 +0000 |
| commit | c4dd7a1a684490673e25aaf4fabec5df138854c4 (patch) | |
| tree | 4d57c44caae4480efff02b90b9be86f44bf25409 /ext/date/tests/mktime_basic1.phpt | |
| download | php2-master.tar.gz | |
Imported from /home/lorry/working-area/delta_php2/php-5.4.13.tar.bz2.HEADphp-5.4.13master
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=== + |
