{foreach},{foreachelse}

用于像访问序数数组一样访问关联数组

{foreach},{foreachelse}

{foreach} is used to loop over an associative array as well a numerically-indexed array, unlike {section} which is for looping over numerically-indexed arrays only. The syntax for {foreach} is much easier than {section}, but as a tradeoff it can only be used for a single array. Every {foreach} tag must be paired with a closing {/foreach} tag.

{foreach} 用于像循环访问一个数字索引数组一样循环访问一个关联数组,与仅能访问数字索引数组的{section}不同,{foreach}的语法比 {section}的语法简单得多,但是作为一个折衷方案也仅能用于单个数组。每个{foreach}标记必须与关闭标记{/foreach}成对出现。

Attribute Name
属性名称
Type
类型
Required
必要
Default
默认值
Description
描述
from array Yes必要 n/a The array you are looping through
循环访问的数组
item string Yes必要 n/a The name of the variable that is the current element
当前元素的变量名
key string No可选 n/a The name of the variable that is the current key
当前键名的变量名
name string No可选 n/a The name of the foreach loop for accessing foreach properties
用于访问foreach属性的foreach循环的名称
  • Required attributes are from and item.

  • from和item是必要属性
  • The name of the {foreach} loop can be anything you like, made up of letters, numbers and underscores, like PHP variables.

  • {foreach}循环的name可以是任何字母,数组,下划线的组合,参考PHP变量。
  • {foreach} loops can be nested, and the nested {foreach} names must be unique from each other.

  • {foreach}循环可以嵌套,嵌套的{foreach}的名称应当互不相同。
  • The from attribute, usually an array of values, determines the number of times {foreach} will loop.

  • from属性通常是值数组,被用于判断{foreach}的循环次数。
  • {foreachelse} is executed when there are no values in the from variable.

  • 在from变量中没有值时,将执行{foreachelse}。
  • {foreach} loops also have their own variables that handle properties. These are accessed with: {$smarty.foreach.name.property} with "name" being the nameattribute.

  • {foreach}循环也有自身属性的变量,可以通过{$smarty.foreach.name.property}访问,其中"name"是name属性。

    Note: The name attribute is only required when you want to access a {foreach} property, unlike {section}. Accessing a {foreach} property with nameundefined does not throw an error, but leads to unpredictable results instead.

  • 注意:name属性仅在需要访问{foreach}属性时有效,与{section}不同。访问未定义name的{foreach}属性不会抛出一个错误,但将导致不可预知的结果。

  • {foreach} properties are indexiterationfirstlastshowtotal.

  • {foreach}属性有index, iteration, first, last, show, total.
  1. Example 7-7. {foreach} with associative item attribute
  2. 例 7-7. {foreach}的item属性是关联数组
  3. <?php
  4. $items_list = array(
  5. 23 => array('no' => 2456, 'label' => 'Salad'),
  6. 96 => array('no' => 4889, 'label' => 'Cream')
  7. );
  8. $smarty->assign('items', $items_list);
  9. ?>
  10. Template to output $items with $myId in the url
  11. 模板中,url通过$myId输出$items
  12. <ul>
  13. {foreach from=$items key=myId item=i}
  14. <li><a href="http://blog.163.com/lgh_2002/blog/item.php?id={$myId}">{$i.no}: {$i.label}</li>
  15. {/foreach}
  16. </ul>
  17. The above example will output:
  18. 上例将输出:
  19. <ul>
  20. <li><a href="http://blog.163.com/lgh_2002/blog/item.php?id=23">2456: Salad</li>
  21. <li><a href="http://blog.163.com/lgh_2002/blog/item.php?id=96">4889: Cream</li>
  22. </ul>
  1. Example 7-8. {foreach} with nested item and key
  2. 例 7-8. {foreach}使用嵌套的item和key
  3. Assign an array to Smarty, the key contains the key for each looped value.
  4. 向Smarty设置一个数组,对于每个键名对应的每个循环值都包括键。
  5. <?php
  6. $smarty->assign('contacts', array(
  7. array('phone' => '1',
  8. 'fax' => '2',
  9. 'cell' => '3'),
  10. array('phone' => '555-4444',
  11. 'fax' => '555-3333',
  12. 'cell' => '760-1234')
  13. ));
  14. ?>
  15. The template to output $contact.
  16. 用于输出$contact的模板。
  17. <foreach name=outer item=contact from=$contacts}
  18. <hr />
  19. {foreach key=key item=item from=$contact}
  20. {$key}: {$item}<br />
  21. {/foreach}
  22. {/foreach}
  23. The above example will output:
  24. 上例将输出:
  25. <hr />
  26. phone: 1<br />
  27. fax: 2<br />
  28. cell: 3<br />
  29. <hr />
  30. phone: 555-4444<br />
  31. fax: 555-3333<br />
  32. cell: 760-1234<br />

.index

index contains the current array index, starting with zero.

.index包含当前数组索引,从零开始。

  1. {* 每五行输出一次头部区块 *}
  2. <table>
  3. {foreach from=$items key=myId item=i name=foo}
  4. {if $smarty.foreach.foo.index % 5 == 0}
  5. <tr><th>Title</th></tr>
  6. {/if}
  7. <tr><td>{$i.label}</td></tr>
  8. {/foreach}
  9. </table>

.iteration

iteration contains the current loop iteration and always starts at one, unlike index. It is incremented by one on each iteration.

iteration包含当前循环次数,与index不同,从1开始,每次循环增长1。

  1. {* 该例将输出0|1, 1|2, 2|3, ... 等等 *}
  2. {foreach from=$myArray item=i name=foo}
  3. {$smarty.foreach.foo.index}|{$smarty.foreach.foo.iteration},
  4. {/foreach}

.first

first is TRUE if the current {foreach} iteration is the initial one.

first在当前{foreach}循环处于初始位置时值为TRUE。

  1. {* 对于第一个条目显示LATEST而不是id *}
  2. <table>
  3. {foreach from=$items key=myId item=i name=foo}
  4. <tr>
  5. <td>{if $smarty.foreach.foo.first}LATEST{else}{$myId}{/if}</td>
  6. <td>{$i.label}</td>
  7. </tr>
  8. {/foreach}
  9. </table>

.last

last is set to TRUE if the current {foreach} iteration is the final one.

last在当前{foreach}循环处于最终位置是值为TRUE。

  1. {* 在列表结束时增加一个水平标记 *})
  2. {foreach from=$items key=part_id item=prod name=products}
  3. <a href="http://blog.163.com/lgh_2002/blog/#{$part_id}">{$prod}</a>{if $smarty.foreach.products.last}<hr>{else},{/if}
  4. {foreachelse}
  5. ... content ...
  6. {/foreach}

.show

show is used as a parameter to {foreach}. show is a boolean value. If FALSE, the {foreach} will not be displayed. If there is a {foreachelse} present, that will be alternately displayed.

show是{foreach}的参数. show是一个布尔值。如果值为FALSE,{foreach}将不被显示。如果有对应的{foreachelse},将被显示。

.total

total contains the number of iterations that this {foreach} will loop. This can be used inside or after the {foreach}.

total包括{foreach}将循环的次数,既可以在{foreach}中使用,也可以在之后使用。

  1. {* 在结束位置显示行数 *}
  2. {foreach from=$items key=part_id item=prod name=foo}
  3. {$prod.name><hr/>
  4. {if $smarty.foreach.foo.last}
  5. <div id="total">{$smarty.foreach.foo.total} items</div>
  6. {/if}
  7. {foreachelse}
  8. ... something else ...
  9. {/foreach}

See also {section} and $smarty.foreach.

smarty -- foreach用法的更多相关文章

  1. smarty -- foreach用法详解

    {foreach},{foreachelse} 用于像访问序数数组一样访问关联数组 {foreach},{foreachelse} {foreach} is used to loop over an  ...

  2. smarty foreach 最全用法

    <?php$search_condition = "where name like '$foo%' ";$sql = 'select contact_id, name, ni ...

  3. Smarty基础用法

    一.Smarty基础用法: 1.基础用法如下 include './smarty/Smarty.class.php';//引入smarty类 $smarty = new Smarty();//实例化s ...

  4. smarty foreach循环

    1,smarty foreach1,单纯的数组array(1000,2000,3000),使用foreach(from = $array item=foo){$foo}2,键值对数组<ul> ...

  5. *ecshop 模板中foreach用法详解

    1.foreach分以下几个参数 from, item, name, iteration, index 2.使用foreach循环      如果php要传递一个数组(如:$array)给ecshop ...

  6. (转)Smarty Foreach 使用说明

    foreach 是除 section 之外处理循环的另一种方案(根据不同需要选择不同的方案). foreach 用于处理简单数组(数组中的元素的类型一致),它的格式比 section 简单许多,缺点是 ...

  7. PHP中foreach()用法汇总

    这篇文章主要给大家详细介绍了PHP中foreach()用法以及相关的示例,十分的细致,有需要的小伙伴可以参考下. PHP 4 引入了 foreach 结构,和 Perl 以及其他语言很像.这只是一种遍 ...

  8. jQuery each和js forEach用法比较

    本文实例分析了jQuery each和js forEach用法.分享给大家供大家参考,具体如下: 对于遍历数组的元素,js代码和jquery都有类似的方法,js用的是forEach而jquery用的是 ...

  9. 【JS】<c:foreach>用法

    <c:foreach>类似于for和foreach循环   以下是我目前见过的用法: 1.循环遍历,输出所有的元素. <c:foreach items="${list}&q ...

随机推荐

  1. 为什么数值类型byte取值范围是(-128~127)?

    在解决这个问题之前,我们先了解几个概念? 一.原码, 反码, 补码的概念 正数的反码和补码都与原码一样: 负数的反码.补码与原码不同,负数的反码:原码中除去符号位,其他的数值位取反,0变1,1变0.负 ...

  2. Linux - full name of command

    pwd: print working directory cd: change directory ls: list ps: process status su: switch user mv: mo ...

  3. Lazarus IDE的几个小技术

    delphi+cnpack用惯了,转移到lazarus有点难受是不是!其实,lazaurs的编辑器也是蛮强大的,支持代码补全,自动完成,模板编辑,多行缩进注释,选定代码后批量更改里面的单词!目前,我知 ...

  4. 单选按钮控件(Ridio Button)的使用

    VC学习笔记5:单选按钮控件(Ridio Button)的使用 一.对单选按钮进行分组: 每组的第一个单选按钮设置属性:Group,Tabstop,Auto;其余按钮设置属性Tabstop,Auto. ...

  5. sphinx

    1.什么是SphinxSphinx 是一个在GPLv2 下发布的一个全文检索引擎,商业授权(例如, 嵌入到其他程序中)需要联系我们(Sphinxsearch.com)以获得商业授权.一般而言,Sphi ...

  6. yaf在windows7下32位的安装教程

    首先下载php_yaf.dll文件http://pecl.php.net/package/yaf/2.2.9/windows 打开扩展extension=php_yaf.dll 然后下载工具 http ...

  7. zepto源码--几个判断函数--学习笔记

    几个需要经常用到的类型判断: 自定义一个类似于typeof的函数,提供更多的类型判断. class2type[toString.call(obj)] 是对class2type的取值 在后面通过循环对c ...

  8. 设计模式:访问者模式(Visitor)

    定  义:表示作用于某对象结构中的各元素的操作.它使你可以在不改变各元素的类的前提下定义作用于这些元素的新操作. 结构图: 示例: . 状态类: //状态的抽象类 abstract class Act ...

  9. 实验 snort安装配置与规则编写

    1 实验目的 在linux或windows任意一个平台下完成snort的安装,使snort工作在NIDS模式下,并编写符合相关情景要求的snort规则. 2 实验环境 物理机:windows 8.1 ...

  10. 搜索框UISearchController的使用(iOS8.0以后替代UISearchBar + UISearchDisplayController)

    1.searchResultsUpdater:设置显示搜索结果的控制器 ? 1     _mySearchController.searchResultsUpdater = self; 2.dimsB ...