- 浏览: 295693 次
- 性别:
- 来自: 福建龙岩
文章分类
- 全部博客 (201)
- JavaSE (20)
- Struts1 (7)
- Struts2 (0)
- Hibernate (0)
- Spring (2)
- Flex (0)
- Ajax (1)
- web (20)
- Database (17)
- jsp/servlet (1)
- javascirpt (14)
- freemarker (2)
- jquery (6)
- SEO优化 (26)
- JSP&Servlet (1)
- PHP (32)
- CSS (12)
- Magento (9)
- 网站性能优化 (3)
- Flash (1)
- 生活 (3)
- 网站建设 (15)
- ZenCart (12)
- web自动化 (1)
- 企业应用 (1)
- LINUX (4)
- 字符集 (2)
- Delphi (1)
- C# (4)
- 移动互联网 (1)
- Vim (1)
最新评论
-
谷超:
第一次搞freemarker,test.ftl这个文件应该放在 ...
freemarker入门例子 -
zyhui98:
file_get_contents用不了
通过IP获取地理位置 -
ljx0517:
那ff下无法获取 路径怎么办呢
common-fileupload中FileItemStream的getName()方法 -
kaixuan_166:
多谢,刚好用到
通过Google获取天气预报信息 -
lufengdie:
借用下,嘿嘿··
java查询IP物理地址
Smarty - Manua手册 - Chapter 7. Built-in Functions第7章 内建函数 - {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}成对出现。
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 name attribute.
-
{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 name undefined does not throw an error, but leads to unpredictable results instead.
-
注意:name属性仅在需要访问{foreach}属性时有效,与{section}不同。访问未定义name的{foreach}属性不会抛出一个错误,但将导致不可预知的结果。
-
{foreach} properties are index, iteration, first, last, show, total.
- {foreach}属性有index, iteration, first, last, show, total.
Example 7-6. Demonstrates the item and key attributes 例 7-6. 演示item和key属性
Template to output $myArray as key/val pair, like PHP's foreach. 用模板按键名/键值对的形式输出$myArray, 类似于PHP的foreach。
The above example will output: 上例将输出:
|
Example 7-7. {foreach} with associative item attribute 例 7-7. {foreach}的item属性是关联数组
Template to output $items with $myId in the url 模板中,url通过$myId输出$items
The above example will output: 上例将输出:
|
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设置一个数组,对于每个键名对应的每个循环值都包括键。
The template to output $contact. 用于输出$contact的模板。
The above example will output: 上例将输出:
|
Example 7-9. Database example with {foreachelse} 例 7-9. 使用{foreachelse}的数据库示例 A database (eg PEAR or ADODB) example of a search script, the query results assigned to Smarty 一个数据库(例如PEAR或ADODB)的搜索脚本示例,
The template which display "None found" if no results with {foreachelse}. 借助{foreachelse}标记在没有结果时模板输出"None found"字样。
|
.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。
.first
first is TRUE if the current {foreach} iteration is the initial one.
first在当前{foreach}循环处于初始位置时值为TRUE。
.last
last is set to TRUE if the current {foreach} iteration is the final one.
last在当前{foreach}循环处于最终位置是值为TRUE。
.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}中使用,也可以在之后使用。
Example 7-14. total property example 例 7-14. total属性示例
|
See also {section} and $smarty.foreach.
发表评论
-
PHP微盾加密及解密
2015-09-16 11:34 1785首先看下加密过后的PHP文件 <?php // Th ... -
PHP处理MySQL事务
2015-08-20 17:17 754MySQL5.X都已经发布好久 ... -
PHP iconv读取UTF-8有BOM文件出现解析异常
2015-06-06 03:27 878首先需求是:从一个文本中读取相关内容(a.txt),利用分隔 ... -
PHP 读取或生成Unicode csv文件(PHP读取淘宝CSV文件出现乱码解决方案)
2015-06-04 01:26 2878=======先介绍下BOM============== ... -
PHP反序列化unserialize 出现bool false 解决办法
2015-06-02 09:23 737php 提供serialize(序列化) 与unserial ... -
ZendStudio 10.6.2破解文件
2015-05-30 12:25 3371下载jar文件并拷贝到程序安装目录的plugins文件夹下, ... -
PHP格式化时间
2012-10-25 16:04 921php中格式化输出日期和时间可用:date('Y-m-d ... -
ECshop首页调用产品评论
2012-10-25 14:45 990方法一: 首先:在index.php文件中定义取得评论 ... -
ECshop设置首页推荐,新品,精品产品数量
2012-10-23 00:17 0ecshop中,为了让更多更丰富的购买信息显示在首页, ... -
淘宝属性选择功能
2012-10-21 08:26 1056ECSHOP默认的颜色是用radio选择的,如何做到像淘宝那样 ... -
ECSHOP仿淘宝产品属性
2012-10-21 08:18 1124原理:1:css控制本来要显示的radio为一小矩形.2:当点 ... -
PHP跳转
2012-06-09 18:17 948第一篇: JavaScript 跳转方法一: < ... -
ECSHOP用户登录超时自动退出解决方法
2012-04-21 04:04 1273ecshop存登录和购物车信息的时候用的是session ... -
54点提高PHP编程效率
2012-04-11 06:26 7580、用单引号代替双引 ... -
PHP安全漏洞
2012-04-07 16:17 1031针对PHP的网站主要存在下面几种攻击方式:1、命令注 ... -
分享79个Jquery图片滚动插件
2012-03-10 01:15 0http://www.chhua.com/web-note29 ... -
54点提高PHP编程效率 引入缓存机制提升性能
2012-03-02 16:43 00、用单引号代替双引号来包含字符串,这样做会更快一些。因为P ... -
替换ECSHOP首页FLASH幻灯为JQuery图片切换效果
2012-01-12 16:56 2521修改ECSHOP首页FLASH幻 ... -
Ecshop二次开发,Ecshop文件结构
2011-11-17 15:09 1335Ecshop文件结构 ecshop文件架构说明 /* ... -
Lightinthebox程序bug
2011-08-03 01:32 1850兰亭集势成立于2007年,注册资金300万美元, ...
相关推荐
在Smarty中,处理数组和循环是非常常见的任务,尤其是`foreach`循环。下面我们将深入探讨如何在Smarty中使用`foreach`循环以及如何控制循环次数。 1. **获取数组长度** 在Smarty中,可以通过管道操作符 `|` 配合...
整合步骤详解如下: 第一步:安装CI框架和Smarty - 从官网下载CI框架的最新版,并且解压到Web服务器的根目录下。 - 下载Smarty,并将其解压到指定的目录。这里推荐使用Smarty-3.1.8版本。 - 将解压后的Smarty文件夹...
### Smarty中文手册与教程知识点详解 #### 一、Smarty简介 **Smarty** 是一款用于 PHP 的模板引擎,其主要设计理念是将程序逻辑与界面展示分离,以提高项目的可维护性和可扩展性。作为一款编译型的 PHP 模板引擎,...
《PHP Smarty图书管理系统详解》 Smarty是一个非常流行的PHP模板引擎,它将PHP代码与HTML分离,使得开发者可以更专注于业务逻辑的实现,而设计师则能更专注于页面的美化。在这个"PHP Smarty图书管理系统"中,我们...
### Smarty模板中的for循环知识点详解 #### 一、背景与问题描述 在使用Smarty模板引擎进行Web开发的过程中,经常会遇到需要在模板文件中实现循环逻辑的情况。然而,默认情况下,Smarty只提供了针对数组的循环功能...
本文将详细介绍Smarty模板中的两种主要控制标签:`if`/`else`/`elseif` 和 `foreach`/`foreachelse`,并提供具体实例以加深理解。 #### 二、`if`/`else`/`elseif` 控制标签详解 `if`语句是任何编程语言中的基本控制...
- **{foreach}**:遍历数组或对象。 - **{if}**:条件判断。 - **{include}**:包含其他模板文件。 - **{block}**:定义可重用的代码块。 - **{function}**:定义自定义函数。 - **{debug}**:调试信息显示。 #### ...
5. Smarty模板语法:Smarty提供了一套自己的模板语法,如 {$var} 用于输出变量,{foreach} 用于循环遍历数组,{if} 用于条件判断等。学习这些语法可以帮助开发者快速编写模板文件。 6. 用户交互:新闻管理系统通常...
### Smarty简介与应用详解 #### 一、Smarty框架概述 Smarty是PHP中一款非常流行的模板引擎,它将表现层和业务逻辑层分离,使得开发者能够更专注于代码逻辑的编写,而设计人员则可以自由地调整界面布局而不受PHP...
### PHP与Smarty协作详解 #### 一、Smarty简介与背景 在Web开发领域,随着技术的发展,越来越多的开发者意识到将程序逻辑与展示层分离的重要性。Smarty作为一种流行的模板引擎,为PHP开发者提供了一种高效的方式来...
2. **模板语法**:Smarty提供了一套简单的模板语法,如`{foreach}`用于循环,`{if}`、`{elseif}`、`{else}`用于条件判断,`{$variable}`用于显示变量等,使得非PHP程序员也能轻松理解。 3. **缓存机制**:Smarty...
### Smarty学习手册知识点详解 #### 一、Smarty模板引擎简介 **Smarty** 是一款流行的 PHP 模板引擎,它的核心设计理念在于将应用逻辑与界面设计相分离,从而提高开发效率和维护性。在实际开发过程中,经常会遇到 ...
【PHP+Smarty留言板详解】 PHP和Smarty是一种常见的Web开发组合,用于构建动态网站。PHP作为后端脚本语言,处理服务器端逻辑,而Smarty则是一个模板引擎,将业务逻辑与前端展示分离,使得代码更加清晰易维护。在这...
- **函数**:Smarty提供了多种内置函数来处理数据,如`{if}`, `{foreach}`, `{assign}`等。 - **属性**:属性用于控制函数的行为,例如`{if $var1==1}`中的`==1`就是一个属性。 - **双引号内值的嵌入**:可以在双...
### Smarty中文手册知识点详解 #### 一、模板设计 **1. 基本语法** - **注释**: Smarty 模板中的注释使用 `{* ... *}` 的形式。 - **函数**: Smarty 提供了一系列内置函数,如 `if`, `foreach` 等。 - **属性**: ...
Smarty提供了丰富的模板语法,如变量赋值、控制结构(if/else、foreach等)、函数调用等,以及缓存机制和插件系统,极大地提高了开发效率和代码的可读性。 三、PHP Package 2.7特性 1. **路由系统**:...
《ASP网站CMS程序源码与Smarty模板引擎实例开发详解》 在互联网开发领域,内容管理系统(CMS)扮演着至关重要的角色,它使得非技术背景的用户也能轻松管理网站内容。而Smarty模板引擎作为PHP世界中广泛应用的模板...