有月份数组$months('January', 'February', 'May')
并希望本月在循环中显示
{for $foo=1 to 3}
{$months[$foo]}
{/for}
我得到白页,我的代码出了什么问题?
答案 0 :(得分:2)
首先,确保正确定义数组:
$months = array('January', 'February', 'May');
然后,确保索引正确(在PHP数组索引中从0开始):
{for $foo=0 to 2}
{$months[$foo]}
{/for}