我在使用Twig
时遇到了一些困难。
当我致电{{ dump(photos) }}
时,我得到:
array (size=4)
0 => string 'gjdh15,jpg,200,200' (length=18)
1 => string 'gjdh13,jpg,200,200' (length=18)
2 => string 'gjdh12,jpg,200,200' (length=18)
3 => string 'gjdh10,jpg,200,200' (length=18)
当我致电{{ dump(photos[0]) }}
时,我得到:
string 'gjdh15,jpg,200,200' (length=18)
然而当我致电{{ dump(photos[1]) }}
时,我得到一个例外:
Key" 1"对于带有键的数组" 0"不存在
当它明显的时候。
是否有一种使用Twig
中的索引访问数组值的特殊方法? (我不能使用循环)。