我想使用SonataIntBundle来翻译twig datetime。
我在我的composer.json中添加了:
"sonata-project/intl-bundle": "dev-master"
AppKernel.php:
new Sonata\IntlBundle\SonataIntlBundle(),
配置:TML:
sonata_intl:
timezone:
default: Europe/Paris
locales:
fr: Europe/Paris
en: Europe/London
我尝试了代码:
{{ date_time_object | format_datetime(null, 'fr', 'Europe/Paris',constant('IntlDateFormatter::LONG'), constant('IntlDateFormatter::SHORT')) }}
我收到错误:“变量”date_time_object“不存在”。我错过了什么?
答案 0 :(得分:0)
只需更改date_time_object" now" ^^