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/date-lenient.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/date-lenient.phpt')
| -rw-r--r-- | ext/date/tests/date-lenient.phpt | 146 |
1 files changed, 146 insertions, 0 deletions
diff --git a/ext/date/tests/date-lenient.phpt b/ext/date/tests/date-lenient.phpt new file mode 100644 index 0000000..e5862e1 --- /dev/null +++ b/ext/date/tests/date-lenient.phpt @@ -0,0 +1,146 @@ +--TEST-- +Test for + character in date format +--FILE-- +<?php +$date = "06/08/04 12:00"; +print_r( date_parse_from_format( 'm/d/y', $date ) ); +print_r( date_parse_from_format( 'm/d/y+', $date ) ); +print_r( date_parse_from_format( '+m/d/y', $date ) ); +print_r( date_parse_from_format( 'm/d/y++', $date ) ); + +$date = "06/08/04"; +print_r( date_parse_from_format( 'm/d/y+', $date ) ); +print_r( date_parse_from_format( '+m/d/y', $date ) ); + +?> +--EXPECT-- +Array +( + [year] => 2004 + [month] => 6 + [day] => 8 + [hour] => + [minute] => + [second] => + [fraction] => + [warning_count] => 0 + [warnings] => Array + ( + ) + + [error_count] => 1 + [errors] => Array + ( + [8] => Trailing data + ) + + [is_localtime] => +) +Array +( + [year] => 2004 + [month] => 6 + [day] => 8 + [hour] => + [minute] => + [second] => + [fraction] => + [warning_count] => 1 + [warnings] => Array + ( + [8] => Trailing data + ) + + [error_count] => 0 + [errors] => Array + ( + ) + + [is_localtime] => +) +Array +( + [year] => 2004 + [month] => 6 + [day] => 8 + [hour] => + [minute] => + [second] => + [fraction] => + [warning_count] => 1 + [warnings] => Array + ( + [8] => Trailing data + ) + + [error_count] => 0 + [errors] => Array + ( + ) + + [is_localtime] => +) +Array +( + [year] => 2004 + [month] => 6 + [day] => 8 + [hour] => + [minute] => + [second] => + [fraction] => + [warning_count] => 1 + [warnings] => Array + ( + [8] => Trailing data + ) + + [error_count] => 0 + [errors] => Array + ( + ) + + [is_localtime] => +) +Array +( + [year] => 2004 + [month] => 6 + [day] => 8 + [hour] => + [minute] => + [second] => + [fraction] => + [warning_count] => 0 + [warnings] => Array + ( + ) + + [error_count] => 0 + [errors] => Array + ( + ) + + [is_localtime] => +) +Array +( + [year] => 2004 + [month] => 6 + [day] => 8 + [hour] => + [minute] => + [second] => + [fraction] => + [warning_count] => 0 + [warnings] => Array + ( + ) + + [error_count] => 0 + [errors] => Array + ( + ) + + [is_localtime] => +) |
