我在PHP中有数组:
array( 'name1' => 'one', 'name2' => 'two', 'name3' => 'three' )
但是在树枝上:
{% for i in range(1, 3) %} {{'name' ~ i}} {% endfor %}
给我:
1 2 3
请帮帮我。感谢。
答案 0 :(得分:0)
你可以这样做:
{% for i in range(1, 3) %}
{{ attribute(_context, 'name' ~ i) }}
{% endfor %}
拥有:
one
two
three