(PHP 5 >= 5.5.0, PHP 7, PHP 8, PECL intl >= 3.0.0)
IntlDateFormatter::getCalendarObject -- datefmt_get_calendar_object — 获取格式化程序的日历对象副本
面向对象风格
过程式风格
获取此格式化程序内部使用的日历对象的副本。此日历将具有与格式化程序使用的类型和时区匹配的类型(如公历、日本历、佛教历、中华民国历、波斯历、伊斯兰历等)和时区。对象的日期/时间未指定。
此函数没有参数。
示例 #1 IntlDateFormatter::getCalendarObject() 示例
<?php
$formatter = IntlDateFormatter::create(
"fr_FR@calendar=islamic",
NULL,
NULL,
"GMT-01:00",
IntlDateFormatter::TRADITIONAL
);
$cal = $formatter->getCalendarObject();
var_dump(
$cal->getType(),
$cal->getTimeZone(),
$cal->getLocale(Locale::VALID_LOCALE)
);
上面的示例将输出
string(7) "islamic" object(IntlTimeZone)#3 (4) { ["valid"]=> bool(true) ["id"]=> string(9) "GMT-01:00" ["rawOffset"]=> int(-3600000) ["currentOffset"]=> int(-3600000) } string(5) "fr_FR"