Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/intl/tests/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/intl/tests/dateformat_get_set_calendar.phpt |
--TEST-- IntlDateFormatter: setCalendar()/getCalendar()/getCalendarObject() --SKIPIF-- <?php if (!extension_loaded('intl')) die('skip intl extension not enabled'); ?> <?php if (version_compare(INTL_ICU_VERSION, '50.1.2') >= 0) die('skip for ICU < 50.1.2'); ?> --FILE-- <?php ini_set("intl.error_level", E_WARNING); ini_set("intl.default_locale", "pt_PT"); ini_set("date.timezone", 'Atlantic/Azores'); $ts = strtotime('2012-01-01 00:00:00 UTC'); function d(IntlDateFormatter $df) { global $ts; echo $df->format($ts), "\n"; var_dump($df->getCalendar(), $df->getCalendarObject()->getType(), $df->getCalendarObject()->getTimeZone()->getId()); echo "\n"; } $df = new IntlDateFormatter('fr@calendar=islamic', 0, 0, 'Europe/Minsk'); d($df); //changing the calendar with a cal type should not change tz $df->setCalendar(IntlDateFormatter::TRADITIONAL); d($df); //but changing with an actual calendar should $cal = IntlCalendar::createInstance("UTC"); $df->setCalendar($cal); d($df); ?> ==DONE== --EXPECT-- dimanche 1 janvier 2012 ap. J.-C. 03:00:00 UTC+03:00 int(1) string(9) "gregorian" string(12) "Europe/Minsk" dimanche 8 Safar 1433 AH 03:00:00 UTC+03:00 int(0) string(7) "islamic" string(12) "Europe/Minsk" dimanche 1 janvier 2012 ap. J.-C. 00:00:00 UTC bool(false) string(9) "gregorian" string(3) "UTC" ==DONE==
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare