php-src/ext/date/tests/bug54340.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

44 lines
771 B
PHP

--TEST--
Bug #54340 (DateTime::add() method bug)
--INI--
date.timezone=UTC
--FILE--
<?php
$interval = new DateInterval('P1D');
$dt = new DateTime('first day of January 2011');
var_dump($dt);
$dt->add($interval);
var_dump($dt);
$dt = new DateTime('first day of January 2011');
$dt->sub($interval);
var_dump($dt);
--EXPECT--
object(DateTime)#2 (3) {
["date"]=>
string(26) "2011-01-01 00:00:00.000000"
["timezone_type"]=>
int(3)
["timezone"]=>
string(3) "UTC"
}
object(DateTime)#2 (3) {
["date"]=>
string(26) "2011-01-02 00:00:00.000000"
["timezone_type"]=>
int(3)
["timezone"]=>
string(3) "UTC"
}
object(DateTime)#3 (3) {
["date"]=>
string(26) "2010-12-31 00:00:00.000000"
["timezone_type"]=>
int(3)
["timezone"]=>
string(3) "UTC"
}