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
'pattern of the formatter is : ' . datefmt_get_pattern($fmt);
echo
'First Formatted output with pattern is ' . datefmt_format($fmt, 0);
datefmt_set_pattern($fmt,'yyyymmdd hh:mm:ss z');
echo
'Now pattern of the formatter is : ' . datefmt_get_pattern($fmt);
echo
'Second Formatted output with pattern is ' . datefmt_format($fmt, 0);

?>

示例 #2 面向对象示例

<?php
$fmt
= new IntlDateFormatter(
'en_US',
IntlDateFormatter::FULL,
IntlDateFormatter::FULL,
'America/Los_Angeles',
IntlDateFormatter::GREGORIAN,
'MM/dd/yyyy'
);
echo
'pattern of the formatter is : ' . $fmt->getPattern();
echo
'First Formatted output is ' . $fmt->format(0);
$fmt->setPattern('yyyymmdd hh:mm:ss z');
echo
'Now pattern of the formatter is : ' . $fmt->getPattern();
echo
'Second Formatted output is ' . $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