(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)
IntlDateFormatter::getDateType -- datefmt_get_datetype — 获取 IntlDateFormatter 使用的日期类型
面向对象风格
过程化风格
返回格式化程序使用的日期类型。
formatter
格式化程序资源。
示例 #1 datefmt_get_datetype() 示例
<?php
$fmt = datefmt_create(
'en_US',
IntlDateFormatter::FULL,
IntlDateFormatter::FULL,
'America/Los_Angeles',
IntlDateFormatter::GREGORIAN
);
echo '格式化程序的日期类型为:' . datefmt_get_datetype($fmt);
echo '使用日期类型的第一个格式化输出为' . datefmt_format($fmt, 0);
$fmt = datefmt_create(
'en_US',
IntlDateFormatter::SHORT,
IntlDateFormatter::FULL,
'America/Los_Angeles',
IntlDateFormatter::GREGORIAN
);
echo '现在格式化程序的日期类型为:' . datefmt_get_datetype($fmt);
echo '使用日期类型的第二个格式化输出为' . datefmt_format($fmt, 0);
?>
示例 #2 面向对象示例
<?php
$fmt = new IntlDateFormatter(
'en_US',
IntlDateFormatter::FULL,
IntlDateFormatter::FULL,
'America/Los_Angeles',
IntlDateFormatter::GREGORIAN
);
echo '格式化程序的日期类型为:' . $fmt->getDateType();
echo '第一个格式化输出为' . $fmt->format(0);
$fmt = new IntlDateFormatter(
'en_US',
IntlDateFormatter::SHORT,
IntlDateFormatter::FULL,
'America/Los_Angeles',
IntlDateFormatter::GREGORIAN
);
echo '现在格式化程序的日期类型为:' . $fmt->getDateType();
echo '第二个格式化输出为' . $fmt->format(0);
?>
以上示例将输出
datetype of the formatter is : 0 First Formatted output is Wednesday, December 31, 1969 4:00:00 PM PT Now datetype of the formatter is : 2 Second Formatted output is 12/31/69 4:00:00 PM PT