20 lines
377 B
PHP
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) {
|
|
}
|