mirror of
https://github.com/php/php-src.git
synced 2026-04-21 15:08:16 +02:00
1ae34385e1
* PHP-8.0: Fix #68471: IntlDateFormatter fails for "GMT+00:00" timezone
18 lines
304 B
PHP
18 lines
304 B
PHP
--TEST--
|
|
Bug #68471 (IntlDateFormatter fails for "GMT+00:00" timezone)
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
$formatter = new IntlDateFormatter(
|
|
'fr_FR',
|
|
IntlDateFormatter::NONE,
|
|
IntlDateFormatter::NONE,
|
|
"GMT+00:00"
|
|
);
|
|
var_dump($formatter);
|
|
?>
|
|
--EXPECT--
|
|
object(IntlDateFormatter)#1 (0) {
|
|
}
|