PHP Conference Japan 2024

IntlDateFormatter::getDateType

datefmt_get_datetype

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

IntlDateFormatter::getDateType -- datefmt_get_datetype获取 IntlDateFormatter 使用的日期类型

描述

面向对象风格

public IntlDateFormatter::getDateType(): int|false

过程化风格

datefmt_get_datetype(IntlDateFormatter $formatter): int|false

返回格式化程序使用的日期类型。

参数

formatter

格式化程序资源。

返回值

格式化程序的当前 日期类型 值,或在失败时返回 false

示例

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

参见

添加注释

用户贡献注释

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