dateformat_bug65683.phpt 359 B

12345678910111213
  1. --TEST--
  2. Bug #65683 IntlDateFormatter accepts DateTimeImmutable
  3. --EXTENSIONS--
  4. intl
  5. --FILE--
  6. <?php
  7. $formatter = new IntlDateFormatter('en-US', IntlDateFormatter::FULL, IntlDateFormatter::NONE, new DateTimeZone("UTC"));
  8. var_dump($formatter->format(new DateTimeImmutable('2017-03-27 00:00:00 UTC'))) . "\n";
  9. ?>
  10. --EXPECTF--
  11. string(%s) "Monday, March %d, 2017"