1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/date/tests/bug54316.phpt
Máté Kocsis 7aacc705d0 Add many missing closing PHP tags to tests
Closes GH-5958
2020-08-09 22:03:36 +02:00

30 lines
586 B
PHP

--TEST--
Bug #54316 (DateTime::createFromFormat does not handle trailing '|' correctly)
--INI--
date.timezone=UTC
--FILE--
<?php
$dt = DateTime::createFromFormat('Y-m-d|', '2011-02-02');
var_dump($dt);
$dt = DateTime::createFromFormat('Y-m-d!', '2011-02-02');
var_dump($dt);
?>
--EXPECT--
object(DateTime)#1 (3) {
["date"]=>
string(26) "2011-02-02 00:00:00.000000"
["timezone_type"]=>
int(3)
["timezone"]=>
string(3) "UTC"
}
object(DateTime)#2 (3) {
["date"]=>
string(26) "1970-01-01 00:00:00.000000"
["timezone_type"]=>
int(3)
["timezone"]=>
string(3) "UTC"
}