IntlDateFormatter::getCalendar

datefmt_get_calendar

(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)

IntlDateFormatter::getCalendar -- datefmt_get_calendar获取 IntlDateFormatter 使用的日历类型

描述

面向对象风格

public IntlDateFormatter::getCalendar(): int|false

过程式风格

datefmt_get_calendar(IntlDateFormatter $formatter): int|false

参数

formatter

格式化器资源

返回值

格式化器使用的 日历类型IntlDateFormatter::TRADITIONALIntlDateFormatter::GREGORIAN。 失败时返回 false

范例

范例 #1 datefmt_get_calendar() 示例

<?php
$fmt
= datefmt_create(
'en_US',
IntlDateFormatter::FULL,
IntlDateFormatter::FULL,
'America/Los_Angeles',
IntlDateFormatter::GREGORIAN
);
echo
'calendar of the formatter is : ' . datefmt_get_calendar($fmt);
datefmt_set_calendar($fmt, IntlDateFormatter::TRADITIONAL);
echo
'Now calendar of the formatter is : ' . datefmt_get_calendar($fmt);
?>

范例 #2 面向对象示例

<?php
$fmt
= new IntlDateFormatter(
'en_US',
IntlDateFormatter::FULL,
IntlDateFormatter::FULL,
'America/Los_Angeles',
IntlDateFormatter::GREGORIAN
);
echo
'calendar of the formatter is : ' . $fmt->getCalendar();
$fmt->setCalendar(IntlDateFormatter::TRADITIONAL);
echo
'Now calendar of the formatter is : ' . $fmt->getCalendar();

?>

范例 #3 无效区域设置处理的示例

<?php
try {
$fmt = new IntlDateFormatter(
'invalid_locale',
IntlDateFormatter::FULL,
IntlDateFormatter::FULL,
'dunno',
IntlDateFormatter::GREGORIAN,
);
$cal = $fmt->getCalendar();
} catch (
\Error $e) {
// ...
}
?>

上面的示例将输出

calendar of the formatter is : 1
Now calendar of the formatter is : 0

参见

添加备注

用户贡献笔记

本页没有用户贡献的笔记。
To Top