timezone_getDisplayName_basic.phpt 425 B

1234567891011121314151617181920
  1. --TEST--
  2. IntlTimeZone::getDisplayName(): basic test
  3. --EXTENSIONS--
  4. intl
  5. --FILE--
  6. <?php
  7. ini_set("intl.error_level", E_WARNING);
  8. $lsb = IntlTimeZone::createTimeZone('Europe/Lisbon');
  9. ini_set('intl.default_locale', 'en_US');
  10. var_dump($lsb->getDisplayName());
  11. ini_set('intl.default_locale', 'pt_PT');
  12. var_dump($lsb->getDisplayName());
  13. ?>
  14. --EXPECTF--
  15. string(%d) "Western European%sTime"
  16. string(%d) "Hora%sda Europa Ocidental"