`
seo
  • 浏览: 5733 次
最近访客 更多访客>>
社区版块
存档分类
最新评论

smarty --foreach详解

    博客分类:
  • PHP
 
阅读更多

Smarty - Manua手册 - Chapter 7. Built-in Functions第7章 内建函数 - {foreach},{foreachelse}用于像访问序数数组一样访问关联数组

{foreach},{foreachelse}

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循环的名称
  • from和item是必要属性
  • {foreach}循环的name可以是任何字母,数组,下划线的组合,参考PHP变量。
  • {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}循环也有自身属性的变量,可以通过{$smarty.foreach.name.property}访问,其中"name"是name属性。

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

  • {foreach} properties are index, iteration, first, last, show, total.

  • {foreach}属性有index, iteration, first, last, show, total.

Example 7-5. The item attribute

例 7-5. item属性

<?php
$arr 
= array(100010011002
);
$smarty->assign('myArray'$arr
);
?>

Template to output $myArray in an un-ordered list

用模板以无序列表输出$myArray

<ul>
{foreach from=$myArray item=foo}
<li>{$foo}</li>
{/foreach}
</ul>

上例将输出:

<ul>
<li>1000</li>
<li>1001</li>
<li>1002</li>
</ul>

Example 7-6. Demonstrates the item and key attributes

例 7-6. 演示item和key属性

<?php
$arr 
= array(=> 'Tennis'=> 'Swimming'=> 'Coding'
);
$smarty->assign('myArray'$arr
);
?>

Template to output $myArray as key/val pair, like PHP's foreach.

用模板按键名/键值对的形式输出$myArray, 类似于PHP的foreach。

<ul>
{foreach from=$myArray key=k item=v}
<li>{$k}: {$v}</li>
{/foreach}
</ul>

The above example will output:

上例将输出:

<ul>
<li>9: Tennis</li>
<li>3: Swimming</li>
<li>8: Coding</li>
</ul>

Example 7-7. {foreach} with associative item attribute

例 7-7. {foreach}的item属性是关联数组

<?php
$items_list 
= array(23 => array('no' => 2456'label' => 'Salad'
),
                    
96 => array('no' => 4889'label' => 'Cream'
)
                    );
$smarty->assign('items'$items_list
);
?>

 

模板中,url通过$myId输出$items

<ul>
{foreach from=$items key=myId item=i}
<li><a href="item.php?id={$myId}">{$i.no}: {$i.label}</li>
{/foreach}
</ul>

 

上例将输出:

<ul>
<li><a href="item.php?id=23">2456: Salad</li>
<li><a href="item.php?id=96">4889: Cream</li>
</ul>

Example 7-8. {foreach} with nested item and key

例 7-8. {foreach}使用嵌套的item和key

Assign an array to Smarty, the key contains the key for each looped value.

向Smarty设置一个数组,对于每个键名对应的每个循环值都包括键。

<?php
 $smarty
->assign('contacts'
, array(
                             array(
'phone' => '1'
,
                                   
'fax' => '2'
,
                                   
'cell' => '3'
),
                             array(
'phone' => '555-4444'
,
                                   
'fax' => '555-3333'
,
                                   
'cell' => '760-1234'
)
                             ));
?>

The template to output $contact.

用于输出$contact的模板。

{foreach name=outer item=contact from=$contacts}
<hr />
{foreach key=key item=item from=$contact}
{$key}: {$item}<br />
{/foreach}
{/foreach}

上例将输出:

<hr />
phone: 1<br />
fax: 2<br />
cell: 3<br />
<hr />
phone: 555-4444<br />
fax: 555-3333<br />
cell: 760-1234<br />

Example 7-9. Database example with {foreachelse}

例 7-9. 使用{foreachelse}的数据库示例

 

一个数据库(例如PEAR或ADODB)的搜索脚本示例,

<?php
  $search_condition 
"where name like '$foo%' "
;
  
$sql 'select contact_id, name, nick from contacts '.$search_condition.' order by name'
;
  
$smarty->assign('results'$db->getAssoc($sql
) );
?>

借助{foreachelse}标记在没有结果时模板输出"None found"字样。

{foreach key=cid item=con from=$results}
<a href="contact.php?contact_id={$cid}">{$con.name} - {$con.nick}</a><br />
{foreachelse}
No items were found in the search
{/foreach}

.index

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

Example 7-10. index example

例 7-10. index示例

{* The header block is output every five rows *}
{* 每五行输出一次头部区块 *}
<table>
{foreach from=$items key=myId item=i name=foo}
  {if $smarty.foreach.foo.index % 5 == 0}
     <tr><th>Title</th></tr>
  {/if}
  <tr><td>{$i.label}</td></tr>
{/foreach}
</table>

.iteration

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

Example 7-11. iteration and index example

例 7-11. iteration和index示例

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

.first

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

Example 7-12. first property example

例 7-12. first属性示例

{* show LATEST on the first item, otherwise the id *}
{* 对于第一个条目显示LATEST而不是id *}
<table>
{foreach from=$items key=myId item=i name=foo}
<tr>
  <td>{if $smarty.foreach.foo.first}LATEST{else}{$myId}{/if}</td>
  <td>{$i.label}</td>
</tr>
{/foreach}
</table>

.last

 

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

Example 7-13. last property example

例 7-13. last属性示例

{* Add horizontal rule at end of list *}
{* 在列表结束时增加一个水平标记 *})
{foreach from=$items key=part_id item=prod name=products}
  <a href="#{$part_id}">{$prod}</a>{if $smarty.foreach.products.last}<hr>{else},{/if}
{foreachelse}
  ... content ...
{/foreach}

.show

 

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

分享到:
评论
1 楼 pythoner126com 2012-11-18  
写得很详细,用得上。我用smarty做的网站:http://www.yiibai.com/smarty

相关推荐

    php_package2.7-dmvc+smarty - 宋正河作品

    Smarty提供了丰富的模板语法,如变量赋值、控制结构(if/else、foreach等)、函数调用等,以及缓存机制和插件系统,极大地提高了开发效率和代码的可读性。 三、PHP Package 2.7特性 1. **路由系统**:...

    smarty简介

    ### Smarty简介与应用详解 #### 一、Smarty框架概述 Smarty是PHP中一款非常流行的模板引擎,它将表现层和业务逻辑层分离,使得开发者能够更专注于代码逻辑的编写,而设计人员则可以自由地调整界面布局而不受PHP...

    PHP与Smarty协作的菜鸟级参考

    ### PHP与Smarty协作详解 #### 一、Smarty简介与背景 在Web开发领域,随着技术的发展,越来越多的开发者意识到将程序逻辑与展示层分离的重要性。Smarty作为一种流行的模板引擎,为PHP开发者提供了一种高效的方式来...

    Smarty中文手册,Smarty教程,Smarty模板的入门教材

    ### Smarty中文手册与教程知识点详解 #### 一、Smarty简介 **Smarty** 是一款用于 PHP 的模板引擎,其主要设计理念是将程序逻辑与界面展示分离,以提高项目的可维护性和可扩展性。作为一款编译型的 PHP 模板引擎,...

    ecshop代码解读

    foreach ($cat_recommend_res as $cat_recommend_data) { $cat_rec[$cat_recommend_data['recommend_type']][] = array('cat_id' =&gt; $cat_recommend_data['cat_id'], 'cat_name' =&gt; $cat_recommend_data['cat_name...

    Smarty 常用小抄

    ### Smarty 常用小抄知识点详解 #### 一、简介 Smarty 是一款 PHP 模板引擎,它将模板和 PHP 代码分离,使得前端页面更易于维护与修改。本篇文档将详细介绍 Smarty Cheat Sheet version 2.0 中的关键知识点。 ####...

    php smaraty使用

    ### PHP Smarty 使用详解 #### 什么是Smarty? Smarty是一款流行的PHP模板引擎,它的设计目标是将应用程序的业务逻辑层与表示层(即用户界面)进行分离,以提高代码的可维护性和开发效率。对于初次接触模版引擎的...

    Smarty foreach控制循环次数的实现详解

    在Smarty中,处理数组和循环是非常常见的任务,尤其是`foreach`循环。下面我们将深入探讨如何在Smarty中使用`foreach`循环以及如何控制循环次数。 1. **获取数组长度** 在Smarty中,可以通过管道操作符 `|` 配合...

    php smarty图书管理系统。。

    《PHP Smarty图书管理系统详解》 Smarty是一个非常流行的PHP模板引擎,它将PHP代码与HTML分离,使得开发者可以更专注于业务逻辑的实现,而设计师则能更专注于页面的美化。在这个"PHP Smarty图书管理系统"中,我们...

    smarty中文手册

    ### Smarty中文手册知识点详解 #### 一、模板设计 **1. 基本语法** - **注释**: Smarty 模板中的注释使用 `{* ... *}` 的形式。 - **函数**: Smarty 提供了一系列内置函数,如 `if`, `foreach` 等。 - **属性**: ...

    my_ajax_note

    #### 一、JSON详解 ##### 1. 什么是JSON JSON (JavaScript Object Notation) 是一种轻量级的数据交换格式,易于人阅读和编写,同时也易于机器解析和生成。它是一种基于JavaScript的一个子集,但独立于语言的文本...

    Smarty模板中的for循环

    ### Smarty模板中的for循环知识点详解 #### 一、背景与问题描述 在使用Smarty模板引擎进行Web开发的过程中,经常会遇到需要在模板文件中实现循环逻辑的情况。然而,默认情况下,Smarty只提供了针对数组的循环功能...

    CI框架整合smarty步骤详解

    整合步骤详解如下: 第一步:安装CI框架和Smarty - 从官网下载CI框架的最新版,并且解压到Web服务器的根目录下。 - 下载Smarty,并将其解压到指定的目录。这里推荐使用Smarty-3.1.8版本。 - 将解压后的Smarty文件夹...

    php smarty 最新版使用手册 latest

    - **{foreach}**:遍历数组或对象。 - **{if}**:条件判断。 - **{include}**:包含其他模板文件。 - **{block}**:定义可重用的代码块。 - **{function}**:定义自定义函数。 - **{debug}**:调试信息显示。 #### ...

    PHP、Smarty与jQuery Ajax 分页插件jquery.pager.js的使用

    ### PHP、Smarty与jQuery Ajax 分页插件jquery.pager.js的使用详解 #### 一、引言 随着互联网技术的不断发展,用户对于网页交互性的需求越来越高。为了提升用户体验,Ajax技术逐渐成为一种不可或缺的技术手段。它...

    ecshop模板之smarty控制标签教程

    本文将详细介绍Smarty模板中的两种主要控制标签:`if`/`else`/`elseif` 和 `foreach`/`foreachelse`,并提供具体实例以加深理解。 #### 二、`if`/`else`/`elseif` 控制标签详解 `if`语句是任何编程语言中的基本控制...

Global site tag (gtag.js) - Google Analytics