Symfony2 / Twig - getting array from dynamic array key

前端 未结 3 1281
遇见更好的自我
遇见更好的自我 2021-02-12 18:32

In PHP I would do this:

foreach( $array as $key => $value ) {

    echo $another_array[$key];

}

I can\'t see how to do that in Twig (in Sym

3条回答
  •  遥遥无期
    2021-02-12 19:03

      {% for value in array %} {% set the_index = attribute(another_array, loop.index) %}
    • {{ the_index }}
    • {% endfor %}

提交回复
热议问题