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

时间:2015-04-17 09:45:17

标签: smarty

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

e.g。

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

我想要的地方'测试2'在第0位和o / p应该是

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

先感谢任何建议。

1 个答案:

答案 0 :(得分:1)

你可以试试这个:

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