bug68471.phpt 304 B

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