3

我必须检查一个变量是一个DateTime对象还是一个简单的字符串才能在我的模板中使用它。

如果变量是 a DateTime,我必须将其格式化为日期;如果是字符串,只需打印它。

{% if post.date is DateTime %}
    {% set postDate = post.date|date %}
{% else %}
    {% set postDate = post.date %}
{% endif %}

<p>Il {{ postDate }}

我认为我应该使用Twig 测试来做到一点(正如StackOverflow Answer about中所建议的那样arrays),但我不太明白我应该将代码放在我的 Symfony 应用程序的哪个文件夹中以及如何在应用程序中注册它。

一旦编写了测试,我如何在 Symfony 的 Twig 模板中使用它?

4

1 回答 1

6

你应该创建一个树枝功能

AcmeBundle\Twig\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';
    }
}

服务.yml

services:
    acme_check_extension:
        class: AcmeBundle\Twig\CheckExtension
        tags:
            - { name: twig.extension }

在您的模板中:

{% if isDateTime(post.date) %} 
    ...
{% endif %}
于 2015-08-14T12:54:04.513 回答