我正在尝试将变量连接到数组键以访问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中访问这样的值?
答案 0 :(得分:0)
试试这个:
{% for i in 1..2 %}
{% if array['test_' ~ i] != 0 %}
<div>Test</div>
{% endif %}
{% endfor %}