msgfmt_format_intlcalendar.phpt 880 B

123456789101112131415161718192021222324252627282930
  1. --TEST--
  2. MessageFormat accepts IntlCalendar args icu >= 4.8 && icu < 50.1.2
  3. --SKIPIF--
  4. <?php
  5. if (!extension_loaded('intl')) die('skip intl extension not enabled'); ?>
  6. <?php if (version_compare(INTL_ICU_VERSION, '50.1.2') >= 0) die('skip for ICU < 50.1.2'); ?>
  7. --FILE--
  8. <?php
  9. ini_set("intl.error_level", E_WARNING);
  10. //ini_set("intl.default_locale", "nl");
  11. ini_set('date.timezone', 'Europe/Lisbon');
  12. $cal = new IntlGregorianCalendar(2012,04,17,17,35,36);
  13. $msgf = new MessageFormatter('pt_PT', '{0,date,full} {0,time,h:m:s a V}');
  14. echo $msgf->format(array($cal)), "\n";
  15. //NOT FIXED:
  16. /*$msgf = new MessageFormatter('en_US',
  17. '{1, select, date {{0,date,full}} other {{0,time,h:m:s a V}}}');
  18. echo "msgf2: ", $msgf->format(array($time, 'date')), " ",
  19. $msgf->format(array($time, 'time')), "\n";
  20. */
  21. ?>
  22. ==DONE==
  23. --EXPECT--
  24. Quinta-feira, 17 de Maio de 2012 5:35:36 p.m. WEST
  25. ==DONE==