数组索引中的Smarty变量

时间:2013-11-07 20:15:07

标签: smarty

有月份数组$months('January', 'February', 'May')

并希望本月在循环中显示

{for $foo=1 to 3}
    {$months[$foo]}
{/for}

我得到白页,我的代码出了什么问题?

1 个答案:

答案 0 :(得分:2)

首先,确保正确定义数组:

$months = array('January', 'February', 'May');

然后,确保索引正确(在PHP数组索引中从0开始):

{for $foo=0 to 2}
    {$months[$foo]}
{/for}