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/intl/tests/bug68471.phpt
T
Christoph M. Becker 1ae34385e1 Merge branch 'PHP-8.0'
* PHP-8.0:
  Fix #68471: IntlDateFormatter fails for "GMT+00:00" timezone
2021-06-28 13:57:31 +02:00

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) {
}