Twig:具有localizeddate扩展名的日期格式

时间:2017-01-03 13:14:04

标签: datetime twig twig-extension

我有:

<div class="date">
{{ event.date|localizeddate('full', 'none', null, 'Europe/Moscow', 'd MMMM YYYY, EEEE') }}
</div>

event.date = '2016-12-30',MySQL DATE字符串。

日期本地化时,输出为'30 December 2017, Friday'。我不明白,为什么年份改为2017年?为什么会这样?

2 个答案:

答案 0 :(得分:0)

在最近的项目中遇到了同样的问题。

在文档中,Y表示“年份的年份” y是年份。

http://userguide.icu-project.org/formatparse/datetime

答案 1 :(得分:-1)

尝试使用:

{{ event.date|date("m/d/Y")|localizeddate('full', 'none', null, 'Europe/Moscow', 'd MMMM YYYY, EEEE') }}