使用for循环表示twig中的变量

时间:2015-07-20 01:56:56

标签: symfony zend-framework2 twig

在我的服务中,我返回一个如下所示的数组:

$array = [
    'bible_anagram_word'    => $result->getBibleAnagramWord(),
    'word_1'                => $result->getWord1(),
    'word_2'                => $result->getWord2(),
    'word_3'                => $result->getWord3(),
    ...
    'word_22'               => $result->getWord22(),
    'word_23'               => $result->getWord23(),
    'word_24'               => $result->getWord24(),
    'word_25'               => $result->getWord25(),
    'Bible_verse_reference' => $result->getBibleVerseReference(),
    'Bible_verse_text'      => $result->getBibleVerseText(),
    'Bible_translation'     => $result->getBibleTranslation(),
];

如何在 for 循环中代表 document.word _ ##

{% for i in 1..25 %}
    {{ document.word_ ~ i|slice(0,1) }}
{% endfor %}

在PHP中,此代码为:

substr ( $this->document['word_'.$i] , 0 , 1 )

我的失败尝试包括:

  • {{document.word_~i | slice(0,1)}}
  • {{(document.word_~i)| slice(0,1)}}
  • {{' document.word_~i' | slice(0,1)}}

1 个答案:

答案 0 :(得分:6)

这应该可以解决问题

{{ attribute(document, 'word_' ~ i) }} 

更多关于attribute function