访问smarty关联数组

时间:2013-09-09 10:06:32

标签: php smarty

ARRAY1:

         [test1] => Array
                    (
                        [inside1] => Array
                            (
                                [0] => 1
                                [1] => 2
                                [2] => 3
                            )
                        [inside2] => Array
                            (
                                [0] => 1
                                [1] => 2
                                [2] => 3
                            )
                      )

我想在smarty中直接访问 inside2 的值,而不使用循环。

1 个答案:

答案 0 :(得分:1)

这应该有效

hello {$varname.test1.inside2[0]}