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


php get locale specific date format

确定当前给定区域设置的短日期格式的最佳方法是什么?

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

dd-mm-yyyy

如果它被设置为American,我希望得到美国地区的日期格式:

mm/dd/yyyy

您可以使用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