是否可以将变量连接到Twig中的if语句?

时间:2015-09-28 14:33:49

标签: php twig

我正在尝试将变量连接到数组键以访问Twig中的某些值,但到目前为止还没有成功。

我有一个大的PHP数组,例如像这样的键:

$array = [
   ...
   ...
   ...
   'test_1' => $test_1,
   'test_2' => $test_2
];

我在Twig模板中尝试了以下内容:

{% for i in 1..2 %}

   {% if array.test_{{ i }} != 0 %}
      <div>Test</div>
   {% endif %}

{% endfor %}

但这不起作用。

有没有办法在Twig中访问这样的值?

1 个答案:

答案 0 :(得分:0)

试试这个:

{% for i in 1..2 %}
    {% if array['test_' ~ i] != 0 %}
        <div>Test</div>
    {% endif %}
{% endfor %}