IntlDateFormatter返回错误的日期

时间:2016-08-29 13:36:13

标签: php date

我在使用IntlDateFormatter类格式化特定日期时遇到问题。我使用了各种各样的方法,但都无济于事,我目前的代码是:

$dataForma  = new DateTime(date("Y-m-d H:i:s", 1451420082));
// output > $dataForma string(26) "2015-12-29 18:14:42.000000"

$dateFormater = \IntlDateFormatter::create(
'pt_br',
\IntlDateFormatter::LONG,
\IntlDateFormatter::NONE,
'America/Sao_Paulo',
\IntlDateFormatter::GREGORIAN,
'Y.MM MMM.d');

$dateFormater->format($dataForma);
// output > string(14) "2016.12 dez.29"

我的代码配置如下:

date_default_timezone_set('America/Sao_Paulo');
setlocale(LC_ALL,"portuguese-brazil");

我放手了什么?

0 个答案:

没有答案