使用IntlDateFormatter我得到的结果不正确:
$dateFormater = \IntlDateFormatter::create(
'en_EN',
\IntlDateFormatter::LONG,
\IntlDateFormatter::NONE
);
$a = date('Y/m/d H:i:s',1332712800); //2012/03/26 00:00:00
$b = $dateFormater->format(1332712800); //March 25, 2012
但这只发生在2012/03/26和2012/10/28之间以及没有时间(00:00:00)的日期。
我无法找出问题所在。
感谢您的帮助。
答案 0 :(得分:4)
http://userguide.icu-project.org/datetime/timezone#TOC-Factory-Methods-and-the-Default-Tim说
TimeZone
维护一个静态时区对象,称为默认时区。这是用户未指定时区时隐式使用的时区。 ICU尝试将其与主机操作系统时区匹配。
简而言之,如果要从intl更改默认时区以匹配date()
所说的内容,则必须更改操作系统上的时区。但不这样做。
您最好在调用IntlDateFormatter::create()
时指定时区。如果您希望使用PHP在其他地方使用的默认时区,可以使用date_default_timezone_get()
检索。
$dateFormater = \IntlDateFormatter::create(
'en_EN',
\IntlDateFormatter::LONG,
\IntlDateFormatter::NONE,
date_default_timezone_get()
);