php-src/ext/date/tests/bug54316.phpt
Adam Harvey fdb2709dd2 Add microseconds to the serialised form of DateTime objects.
Fixes bug #67308 (Serialize of DateTime truncates fractions of second).
2014-05-21 14:55:52 -05:00

29 lines
583 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"
}