使用 Symfony 2 本地化树枝中的日期
要在 twig 中格式化日期,您通常使用以下内容:
To format a date in twig you usually use something like:
{{ meeting.date|date("m/d/Y") }}
现在,我必须本地化这个日期(美国 m/d/y,NL d/m/y).在树枝中执行此操作的最佳做法是什么?我确实使用 Symfony 2,一种解决方法是在控制器中进行翻译,但我想在树枝中这样做.
Now, I have to localize this date (US m/d/y, NL d/m/y). What would be the best practice to do this in the twig? I do use Symfony 2, a workaround would be to do the translation in the controller but i would like to do this in the twig.
推荐答案
Intl Twig 扩展?
在树枝模板中的使用:
{{ my_date | localizeddate('full', 'none', locale) }}
相关文章