我必须检查变量是DateTime
对象还是在我的模板中使用它的简单字符串。
如果变量是DateTime
,我必须将其格式化为日期;如果是字符串,只需打印即可。
{% if post.date is DateTime %}
{% set postDate = post.date|date %}
{% else %}
{% set postDate = post.date %}
{% endif %}
<p>Il {{ postDate }}
我认为我应该使用Twig Test执行此操作(正如this StackOverflow关于arrays
的回答中所述),但我不太清楚我的哪个文件夹Symfony App我应该把代码以及如何在应用程序中注册它。
编写测试后,如何在Symfony的Twig模板中使用它?
答案 0 :(得分:4)
你应该创建一个树枝函数
AcmeBundle \枝条\ CheckExtension.php
<?php
namespace AcmeBundle\Twig;
class CheckExtension extends \Twig_Extension
{
public function getFunctions() {
return array(
'isDateTime' => new \Twig_Function_Method($this, 'isDateTime'),
);
}
public function isDateTime($date) {
return ($date instanceof \DateTime); /* edit */
}
public function getName()
{
return 'acme_check_extension';
}
}
services.yml
services:
acme_check_extension:
class: AcmeBundle\Twig\CheckExtension
tags:
- { name: twig.extension }
在你的模板中:
{% if isDateTime(post.date) %}
...
{% endif %}