gpt4 book ai didi

php 获取语言环境特定的日期格式

转载 作者:可可西里 更新时间:2023-10-31 22:11:40 25 4
gpt4 key购买 nike

确定当前给定语言环境的短日期格式的最佳方法是什么?

例如,如果我的脚本的语言环境设置为荷兰语,我想以某种方式获取该特定语言环境中使用的短日期格式,它将是:

年月日

如果设置为美国,我想获取美国语言环境中的日期格式:

月/日/年

等等……

最佳答案

您可以使用 Intl根据所选区域设置格式化日期的 PHP 扩展:

$locale = 'nl_NL';

$dateObj = new DateTime;
$formatter = new IntlDateFormatter($locale,
IntlDateFormatter::SHORT, IntlDateFormatter::SHORT);

echo $formatter->format($dateObj);

如果您只是想获取用于格式化日期的模式,IntlDateFormatter::getPattern正是您所需要的。

手册中的示例:

$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

关于php 获取语言环境特定的日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22737272/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com