php-src/ext/date/tests/013.phpt
Derick Rethans 0ae51b159e - Fixed a bug with the YYYY-MM format not resetting the day correctly.
- Fixed a bug in the DateTime->modify() methods, it would not use the advanced
  relative time strings.
- Fixed return values of all the modifying methods, they now properly return
  the object itself.
2008-07-30 17:48:21 +00:00

59 lines
1.3 KiB
PHP

--TEST--
date_date_set() tests
--INI--
date.timezone=UTC
--FILE--
<?php
$dto = date_create("2006-12-12");
var_dump($dto);
var_dump($dto->format("Y.m.d H:i:s"));
var_dump(date_date_set());
var_dump($dto->format("Y.m.d H:i:s"));
var_dump(date_date_set($dto, 2006, 5));
var_dump($dto->format("Y.m.d H:i:s"));
var_dump(date_date_set($dto, 2006, 2, 15));
var_dump($dto->format("Y.m.d H:i:s"));
var_dump(date_date_set($dto, 2006, 24, 60));
var_dump($dto->format("Y.m.d H:i:s"));
echo "Done\n";
?>
--EXPECTF--
object(DateTime)#%d (3) {
[u"date"]=>
unicode(19) "2006-12-12 00:00:00"
[u"timezone_type"]=>
int(3)
[u"timezone"]=>
unicode(3) "UTC"
}
unicode(19) "2006.12.12 00:00:00"
Warning: date_date_set() expects exactly 4 parameters, 0 given in %s on line %d
bool(false)
unicode(19) "2006.12.12 00:00:00"
Warning: date_date_set() expects exactly 4 parameters, 3 given in %s on line %d
bool(false)
unicode(19) "2006.12.12 00:00:00"
object(DateTime)#1 (3) {
[u"date"]=>
unicode(19) "2006-02-15 00:00:00"
[u"timezone_type"]=>
int(3)
[u"timezone"]=>
unicode(3) "UTC"
}
unicode(19) "2006.02.15 00:00:00"
object(DateTime)#1 (3) {
[u"date"]=>
unicode(19) "2008-01-29 00:00:00"
[u"timezone_type"]=>
int(3)
[u"timezone"]=>
unicode(3) "UTC"
}
unicode(19) "2008.01.29 00:00:00"
Done