xref: /PHP-8.0/ext/intl/tests/bug68471.phpt (revision 1a01f781)
1--TEST--
2Bug #68471 (IntlDateFormatter fails for "GMT+00:00" timezone)
3--SKIPIF--
4<?php
5if (!extension_loaded('intl')) die("sikp intl extension not available");
6?>
7--FILE--
8<?php
9$formatter = new IntlDateFormatter(
10    'fr_FR',
11    IntlDateFormatter::NONE,
12    IntlDateFormatter::NONE,
13    "GMT+00:00"
14);
15var_dump($formatter);
16?>
17--EXPECT--
18object(IntlDateFormatter)#1 (0) {
19}
20