mirror of
https://github.com/php/php-src.git
synced 2026-04-21 15:08:16 +02:00
8426623521
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).
13 lines
282 B
PHP
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)
|