xref: /php-src/ext/intl/tests/bug68471.phpt (revision 1ae34385)
1--TEST--
2Bug #68471 (IntlDateFormatter fails for "GMT+00:00" timezone)
3--EXTENSIONS--
4intl
5--FILE--
6<?php
7$formatter = new IntlDateFormatter(
8    'fr_FR',
9    IntlDateFormatter::NONE,
10    IntlDateFormatter::NONE,
11    "GMT+00:00"
12);
13var_dump($formatter);
14?>
15--EXPECT--
16object(IntlDateFormatter)#1 (0) {
17}
18