追加到 smarty 中除第 0 个索引之外的数组

Append to array except 0th index in smarty

除了 o index 之外,是否有任何智能函数可以将元素附加到数组?

例如

array = ('test 1', 'test 2', 'test 3');

我希望 'test 2' 在第 0 个位置,o/p 应该是

array = ('test 2', 'test 1', 'test 3');

提前感谢任何建议。

你可以试试这个:

{assign var=element $array[1]}
{$array[1]|unset}
{$array|array_unshift:$element}