PHP Conference Japan 2024

IntlDateFormatter::getPattern

datefmt_get_pattern

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

IntlDateFormatter::getPattern -- datefmt_get_pattern获取IntlDateFormatter使用的模式

描述

面向对象风格

public IntlDateFormatter::getPattern(): string|false

过程化风格

datefmt_get_pattern(IntlDateFormatter $formatter): string|false

获取格式化程序使用的模式。

参数

formatter

格式化程序资源。

返回值

用于格式化/解析的模式字符串,或在失败时返回false

示例

示例 #1 datefmt_get_pattern() 示例

<?php
$fmt
= datefmt_create(
'en_US',
IntlDateFormatter::FULL,
IntlDateFormatter::FULL,
'America/Los_Angeles',
IntlDateFormatter::GREGORIAN,
'MM/dd/yyyy'
);
echo
'格式化程序的模式是:' . datefmt_get_pattern($fmt);
echo
'使用模式的第一次格式化输出是 ' . datefmt_format($fmt, 0);
datefmt_set_pattern($fmt,'yyyymmdd hh:mm:ss z');
echo
'现在格式化程序的模式是:' . datefmt_get_pattern($fmt);
echo
'使用模式的第二次格式化输出是 ' . datefmt_format($fmt, 0);

?>

示例 #2 面向对象示例

<?php
$fmt
= new IntlDateFormatter(
'en_US',
IntlDateFormatter::FULL,
IntlDateFormatter::FULL,
'America/Los_Angeles',
IntlDateFormatter::GREGORIAN,
'MM/dd/yyyy'
);
echo
'格式化程序的模式是:' . $fmt->getPattern();
echo
'第一次格式化输出是 ' . $fmt->format(0);
$fmt->setPattern('yyyymmdd hh:mm:ss z');
echo
'现在格式化程序的模式是:' . $fmt->getPattern();
echo
'第二次格式化输出是 ' . $fmt->format(0);
?>

以上示例将输出

pattern of the formatter is : MM/dd/yyyy
First Formatted output is 12/31/1969
Now pattern of the formatter is : yyyymmdd hh:mm:ss z
Second Formatted output is 19690031 04:00:00 PST

参见

添加注释

用户贡献的注释

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