IntlDateFormatter::getCalendarObject

datefmt_get_calendar_object

(PHP 5 >= 5.5.0, PHP 7, PHP 8, PECL intl >= 3.0.0)

IntlDateFormatter::getCalendarObject -- datefmt_get_calendar_object获取格式化程序的日历对象副本

描述

面向对象风格

public IntlDateFormatter::getCalendarObject(): IntlCalendar|false|null

过程式风格

datefmt_get_calendar_object(IntlDateFormatter $formatter): IntlCalendar|false|null

获取此格式化程序内部使用的日历对象的副本。此日历将具有与格式化程序使用的类型和时区匹配的类型(如公历、日本历、佛教历、中华民国历、波斯历、伊斯兰历等)和时区。对象的日期/时间未指定。

参数

此函数没有参数。

返回值

此格式化程序使用的内部日历对象的副本,如果未设置任何日历对象,则返回 null,如果失败,则返回 false

示例

示例 #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"

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top