• smarty模板section,foreach循环用法


    {foreach name=foreach_name key=k item=v from=$arr}

    {$k}=>{$v}<br/>

    {/foreach} 


    {section name=sec_name loop=$arr start=0 step=n max= m show=true/false }

    {if is_array($arr[sec_name])}

     {section name=sec2 loop=$arr[sec_name]}

    {$arr[sec_name][sec2]}<br/> 

    {/section}

    {esle}

     {$arr[sec_name]}<br/>

    {/if} 

    {$smarty.section.sec_name.index}{*当前循环下标,默认为0,例如0,1,2,3...*} 

    {$smarty.section.sec_name.index_prev}{*当前循环下标的前一个值,index为0时,index_prev为-1*}

    {$smarty.section.sec_name.index_next}{*后一个值,默认为1*}

    {$smarty.section.sec_name.first}{*是否为第一个循环,是为true*}

    {$smarty.section.sec_name.last}{*是否为最后一个循环*}

    {$smarty.section.sec_name.iteration}{*当前行号,如1,2,3,4...*}rownum是iteration的别名

    {$smarty.section.sec_name.loop}{*最后一个循环号,数组元素为7个,实际循环4次(例:max=4),loop仍然显示为7*} 

    {$smarty.section.sec_name.total}{*实际循环次数*} 

    max规定最大循环次数;

    show是否显示这部分内容;决定是否对这块进行显示 

    {/section}

    section在 循环一维带键值的数组时,无法显示数组内容:

    例如:$arr=array('one'=>'bo','two'=>"yuan",'three'=>'mm','four'=>'bb'); 

    {section name=n loop=$arr}

    元素:{$arr[n]} 

    {/section} 

     结果则是:

    section循环

    元素:
    元素:
    元素:
    元素:

    无内容

    如果把数组arr的元素换成‘two’=>array()等,循环到元素two时同样无法得到结果。

    $arr=array('object'=>'book','type'=>'computer'); 

    smarty模板文件中对数组的读取:1.通过索引$arr[0];2.通过键值,$arr.type

  • 相关阅读:
    【jQuery基础学习】03 jQuery中的事件与动画
    【jQuery基础学习】02 jQuery的DOM操作
    【jQuery基础学习】01 jQuery选择器
    【jQuery基础学习】00 序
    【JS复习笔记】07 复习感想
    【JS复习笔记】06 方法
    洛谷P1067 多项式输出 NOIP 2009 普及组 第一题
    嵊州D6T2 城市 city
    博弈论小结
    嵊州D2T4 十七个中毒的英国人 poisoning
  • 原文地址:https://www.cnblogs.com/feng12345/p/5457039.html
Copyright © 2020-2023  润新知