1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 15:08:16 +02:00
Files
archived-php-src/ext/date/tests/bug81097.phpt
T
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

13 lines
282 B
PHP

--TEST--
Bug #81097: DateTimeZone silently falls back to UTC when providing an offset with seconds
--FILE--
<?php
try {
new DatetimeZone('+01:45:30');
} catch (Exception $e) {
echo $e->getMessage();
}
?>
--EXPECT--
DateTimeZone::__construct(): Unknown or bad timezone (+01:45:30)