2012-04-25 75 views
1

我在PHP數組: 嫩枝變量錯誤

 
    array(
     'name1' => 'one', 
     'name2' => 'two', 
     'name3' => 'three' 
    ) 

但在樹枝:

 
    {% for i in range(1, 3) %} 
     {{'name' ~ i}} 
    {% endfor %} 

給我:

 
    1 
    2 
    3 

請幫助我。謝謝。

回答

0

你可以這樣做:

{% for i in range(1, 3) %} 
     {{ attribute(_context, 'name' ~ i) }} 
    {% endfor %} 

擁有:

one 
two 
three