timezone_getDisplayName_variant4.phpt 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --TEST--
  2. IntlTimeZone::getDisplayName(): type parameter (ICU >= 51.2)
  3. --SKIPIF--
  4. <?php if (!extension_loaded('intl')) die('skip intl extension not enabled'); ?>
  5. <?php if (version_compare(INTL_ICU_VERSION, '51.2') < 0) die('skip for ICU >= 51.2'); ?>
  6. --FILE--
  7. <?php
  8. ini_set("intl.error_level", E_WARNING);
  9. ini_set("error_reporting", -1);
  10. ini_set("display_errors", 1);
  11. $lsb = IntlTimeZone::createTimeZone('Europe/Lisbon');
  12. ini_set('intl.default_locale', 'en_US');
  13. var_dump($lsb->getDisplayName(false, IntlTimeZone::DISPLAY_SHORT));
  14. var_dump($lsb->getDisplayName(false, IntlTimeZone::DISPLAY_LONG));
  15. var_dump($lsb->getDisplayName(false, IntlTimeZone::DISPLAY_SHORT_GENERIC));
  16. var_dump($lsb->getDisplayName(false, IntlTimeZone::DISPLAY_LONG_GENERIC));
  17. var_dump($lsb->getDisplayName(false, IntlTimeZone::DISPLAY_SHORT_GMT));
  18. var_dump($lsb->getDisplayName(false, IntlTimeZone::DISPLAY_LONG_GMT));
  19. var_dump($lsb->getDisplayName(false, IntlTimeZone::DISPLAY_SHORT_COMMONLY_USED));
  20. var_dump($lsb->getDisplayName(false, IntlTimeZone::DISPLAY_GENERIC_LOCATION));
  21. ?>
  22. ==DONE==
  23. --EXPECT--
  24. string(3) "GMT"
  25. string(30) "Western European Standard Time"
  26. string(13) "Portugal Time"
  27. string(21) "Western European Time"
  28. string(5) "+0000"
  29. string(3) "GMT"
  30. string(3) "GMT"
  31. string(13) "Portugal Time"
  32. ==DONE==