当前位置: 代码迷 >> HTML/CSS >> smarty tpl 循环,该怎么解决
  详细解决方案

smarty tpl 循环,该怎么解决

热度:878   发布时间:2012-09-18 16:21:42.0
smarty tpl 循环
HTML code
 
            {section name=h1 loop=$result}
                {$result[h1].cat_name};
            {/section}




.tpl 文件中怎么循环输出php传过来的数组。以上不能显示?

------解决方案--------------------
{foreach from = $Array item = $item}
{$item}
{/foreach}