php-8.0.30-src/ext/intl/tests/bug68471.phpt

20 lines
377 B
PHP

--TEST--
Bug #68471 (IntlDateFormatter fails for "GMT+00:00" timezone)
--SKIPIF--
<?php
if (!extension_loaded('intl')) die("sikp intl extension not available");
?>
--FILE--
<?php
$formatter = new IntlDateFormatter(
'fr_FR',
IntlDateFormatter::NONE,
IntlDateFormatter::NONE,
"GMT+00:00"
);
var_dump($formatter);
?>
--EXPECT--
object(IntlDateFormatter)#1 (0) {
}