php-src/ext/date/tests/bug79580.phpt
Derick Rethans 8426623521 Upgrade timelib to 2021.06
Fixes among others:
. Bug #79580 (date_create_from_format misses leap year).
. Bug #80974 (Wrong diff between 2 dates in different timezones).
. Bug #81097 (DateTimeZone silently falls back to UTC when providing an offset with seconds).
. Bug #81273 (Date interval calculation not correct).
2021-08-08 13:41:33 +01:00

25 lines
822 B
PHP

--TEST--
Bug #79580: date_create_from_format misses leap year
--FILE--
<?php
$tz = timezone_open( "UTC" );
$values = [ "31 2020", "60 2020", "91 2020", "121 2020", "130 2020" ];
foreach ( $values as $value )
{
echo "Testing for {$value}: ";
$dt = DateTime::createFromFormat( 'z Y', $value );
if (!$dt) {
echo DateTime::getLastErrors()['errors'][0], "\n";
} else {
echo $dt->format('Y-m-d'), "\n";
}
}
?>
--EXPECT--
Testing for 31 2020: A 'day of year' can only come after a year has been found
Testing for 60 2020: A 'day of year' can only come after a year has been found
Testing for 91 2020: A 'day of year' can only come after a year has been found
Testing for 121 2020: A 'day of year' can only come after a year has been found
Testing for 130 2020: A 'day of year' can only come after a year has been found