mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +08:00
56 lines
1.3 KiB
PHP
56 lines
1.3 KiB
PHP
--TEST--
|
|
IntlDateFormatter: setCalendar()/getCalendar()/getCalendarObject()
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('intl')) die('skip intl extension not enabled'); ?>
|
|
<?php if (version_compare(INTL_ICU_VERSION, '51.2') >= 0) die('skip for ICU < 51.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==
|