在 PHP 中,我会这样做:
foreach( $array as $key => $value ) {
echo $another_array[$key];
}
我看不到如何在 Twig(在 Symfony2 中)中做到这一点。我尝试了各种方法,但这似乎是显而易见的答案,但它不起作用。它返回一个“数组”的项目“the_index”不存在'错误。
{% for value in array %}
{% set the_index = loop.index %}
{{ another_array.the_index }}
有任何想法吗?