在Smarty应用,常常会遇到循环问题,在这里做一个详细的说明。首先是参数说明: loop 属性: the loop variable only determines the number of times to loop loop 循环所赋的变量仅决定循环的次数,可以任意!!! div 属性: the name of the div can be
在Smarty应用,常常会遇到循环问题,在这里做一个详细的说明。首先是参数说明:
loop 属性:
the loop variable only determines the number of times to loop
loop 循环所赋的变量仅决定循环的次数,可以任意!!!
div 属性:
the name of the div can be anything you like,and it is used to reference
the data within the div
div 属性的值可以是任意的,而且在循环中只能使用该名字作为替换
数据,也就是[div]里的值。
下面给出示例来具体说明应用方法(PHP 代表PHP 部分代码,HTML 代表模板
内容,OUTPUT 代表输出内容):
1、一维索引数组循环。
PHP代码
- $suoyin1 = array ( '1000' , '1001' , '1002' );
- $smarty ->assign( 'suoyin1' , $suoyin1 );
XML/HTML代码
- {div name = n1 loop =$suoyin1} >
- id: {$suoyin1[n1]} >
- {/div} >
OUTPUT:
id:1000 id:1001 id:1002
2、如果多个数组包含相同数量的元素,可以将他们合并写出,这里说明了loop 只代
表循环次数。
PHP代码
- $id = array ( '1000' , '1001' , '1002' );
- $name = array ( 'John Smith' , 'Jack Jones' , 'Jane Munson' );
- $address = array ( '253 N 45th' , '417 Mulberry ln' , '5605 apple st' );
- $smarty ->assign( 'id' , $id );
- $smarty ->assign( 'name' , $name );
- $smarty ->assign( 'address' , $address );
XML/HTML代码
- {div name = h1 loop =$name} >
- id: {$id[h1]} >
- name: {$name[h1]} >
- address: {$address[h1]} >
- {/div} >
OUTPUT:
id:1000 name:John Smith address:253 N 45th
id:1001 name:Jack Jones address:417 Mulberry ln
id:1002 name:Jane Munson address:5605 apple st
3、一维关联数组不要循环。
PHP代码
- $bst = array ( 'id' => '1000' , 'name' => 'John Smith' , 'address' => '253 N 45th' );
- $smarty ->assign( 'bst' , $bst );
XML/HTML代码
- id: {$bst.id} >
- name: {$bst.name} >
- address: {$bst.address} >
OUTPUT:
id:1000 name:John Smith address:253 N 45th
4、二维关联数组,用到基本循环。
PHP代码
- $erwei = array ( array ( 'id' => '1000' , 'name' => 'John Smith' , 'address' => '253 N 45th' ),
- array ( 'id' => '1001' , 'name' => 'Jack Jones' , 'address' => '417 Mulberry ln' ),
- array ( 'id' => '1002' , 'name' => 'Jane Munson' , 'address' => '5605 apple st' ));
- $smarty ->assign( 'erwei' , $erwei );
XML/HTML代码
- {div name = h2 loop =$erwei} >
- id: {$erwei[h2].id} >
- name: {$erwei[h2].name} >
- address: {$erwei[h2].address} >
- {/div} >
OUTPUT:
id:1000 name:John Smith address:253 N 45th
id:1001 name:Jack Jones address:417 Mulberry ln
id:1002 name:Jane Munson address:5605 apple st
5、divelse 控制当没变量的时候显示,比如你打开的文章(产品)不存在或已删
除!
XML/HTML代码
- {div name = customer loop =$custid} >
- id: {$custid[customer]} >
- {divelse} >
- there are no values in $custid.
- {/div} >
6、div 多层循环
PHP代码
- $id = array (1001,1002,1003);
- $smarty ->assign( 'custid' , $id );
- $fullnames = array ( 'John Smith' , 'Jack Jones' , 'Jane Munson' );
- $smarty ->assign( 'name' , $fullnames );
- $addr = array ( '253 N 45th' , '417 Mulberry ln' , '5605 apple st' );
- $smarty ->assign( 'address' , $addr );
- $types = array (
- array ( 'home phone' , 'cell phone' , 'e-mail' ),
- array ( 'home phone' , 'web' ),
- array ( 'cell phone' )
- );
- $smarty ->assign( 'contact_type' , $types );
- $info = array (
- array ( '555-555-5555' , '666-555-5555' , 'john@myexample.com' ),
- array ( '123-456-4' , 'www.example.com' ),
- array ( '0457878' )
- );
- $smarty ->assign( 'contact_info' , $info );
XML/HTML代码
- {div name = customer loop =$custid} >
- id: {$custid[customer]} >
- name: {$name[customer]} >
- address: {$address[customer]} >
- {div name = contact loop =$contact_type[customer]} >
- {$contact_type[customer][contact]} > : {$contact_info[customer][contact]} >
- {/div} >
- {/div} >
OUTPUT:
id: 1001
name: John Smith
address: 253 N 45th
home phone: 555-555-5555
cell phone: 666-555-5555
e-mail:5656@126.com
id: 1002
name: 232
address: 417 Mulberry ln
home phone: 123-456-4
web:www.example.com
3
id: 1003
name: Jane Munson
address: 5605 apple st
cell phone: 0457878
7、多层嵌套循环:这里联系方式还嵌套了一个一维数组,有cell phone、home phone
和email。注意嵌套的一维数组不要循环!!内嵌套写法$mu[sec1].contact.home。
PHP代码
- $mu = array ( array ( 'id' => '1000' ,
- 'name' => 'John Smith' ,
- 'address' => '253 N 45th' ,
- 'contact' => array ( 'home' => '555-55-555' , 'bell' => '1111111' )
- ),
- array ( 'id' => '1001' ,
- 'name' => 'Jack Jones' ,
- 'address' => '417 Mulberry ln' ,
- 'contact' => array ( 'home' => '444-44-444' , 'bell' => '2222222' )
- ),
- array ( 'id' => '1002' ,
- 'name' => 'Jane Munson' ,
- 'address' => '5605 apple st' ,
- 'contact' => array ( 'home' => '333-33-333' , 'bell' => '4444444' )
- )
- );
- $smarty ->assign( 'mu' , $mu );
XML/HTML代码
- {div name = sec1 loop =$mu} >
- id: {$mu[sec1].id} >
- name: {$mu[sec1].name} >
- address: {$mu[sec1].address} >
- array: {$mu[sec1].contact} >
- home phone: {$mu[sec1].contact.home} >
- cell phone: {$mu[sec1].contact.bell} >
- ====================================================================
- {/div} >
OUTPUT:
id:1000
name: John Smith
address:253 N 45th
array:Array
home phone:555-55-555
cell phone:1111111 =================================================id:1001
name:Jack Jones
address:417 Mulberry ln
array:Array
home phone:444-44-444
cell phone:2222222 ================================================id:1002
name:Jane Munson
address:5605 apple st
array:Array
home phone:333-33-333
cell phone:4444444
8 、多层嵌套循环。内部嵌套二维数组, 加个循环!! 内嵌套写法
$forum[sec1].topic[sec2].topic_name。
PHP代码
- $forum = array ( array ( "category_id" => 1,
- "category_name" => "公告区" ,
- "topic" => array (
- array ( "topic_id" => 1, "topic_name" => "站务公告" )
- )
- ),
- array ( "category_id" => 2,
- "category_name" => "文学专区" ,
- "topic" => array (
- array ( "topic_id" => 2, "topic_name" => "好书介绍" ),
- array ( "topic_id" => 3, "topic_name" => "奇文共赏" )
- )
- ),
- array ( "category_id" => 3,
- "category_name" => "计算机专区" ,
- "topic" => array (
- array ( "topic_id" => 4, "topic_name" => "硬件外围" ),
- array ( "topic_id" => 5, "topic_name" => "软件讨论" )
- )
- )
- );
- $smarty ->assign( "forum" , $forum );
XML/HTML代码
- {div name = sec1 loop =$forum} >
- {$forum[sec1].category_name} >
- {div name = sec2 loop =$forum[sec1].topic} >
- {$forum[sec1].topic[sec2].topic_name} >
- {/div} >
- {/div} >
OUTPUT:
公告区
站务公告
文学专区
好书介绍
奇文共赏
计算机专区
硬件外围
软件讨论
9、div 和forech 循环的用法比较
PHP代码
- $array2 = array (
- array ( "index1" => "data1-1" , "index2" => "data1-2" , "index3" => "data1-3" ),
- array ( "index1" => "data2-1" , "index2" => "data2-2" , "index3" => "data2-3" ),
- array ( "index1" => "data3-1" , "index2" => "data3-2" , "index3" => "data3-3" ),
- array ( "index1" => "data4-1" , "index2" => "data4-2" , "index3" => "data4-3" ),
- array ( "index1" => "data5-1" , "index2" => "data5-2" , "index3" => "data5-3" )
- );
- $smarty ->assign( "array2" , $array2 );
XML/HTML代码
- foreach
- {foreach item = index2 from =$array2} >
- {foreach key = key2 item = item2 from =$index2} >
- {$key2} > : {$item2} >
- {/foreach} >
- {/foreach} >
- div
- {div name = sec2 loop =$array2} >
- index1: {$array2[sec2].index1} >
- index2: {$array2[sec2].index2} >
- index3: {$array2[sec2].index3} >
- {/div} >
OUTPUT:
index1: data1-1 index2: data1-2 index3: data1-3 index1: data2-1 index2: data2-2 index3: data2-3
index1: data3-1 index2: data3-2 index3: data3-3 index1: data4-1 index2: data4-2 index3: data4-3
index1: data5-1 index2: data5-2 index3: data5-3
10、显示数据库的资料
表posts 文章列表
字段
pid INT(10) AUTO_INCREMENT 文章ID
cid INT(10) 分类ID
ptitle varchar(100) 文章标题
pcontent text 文章内容
ptime INT(11) 文章发表日期
和简单关联二维数组一样。
PHP代码
- $conn =mysql_connect( 'localhost' , 'root' , 'pass' );
- mysql_select_db( 'dbname' , $conn );
- mysql_query( "SET NAMES 'GBK'" );
- $sql = "SELECT * FROM posts" ;
- $result =mysql_query( $sql );
- $posts =mysql_fetch_array( $result );
- $smarty ->assign( 'posts' , $posts );
XML/HTML代码
- {div name = h loop =$posts} >
- 标题: {$posts[h].ptitle} >
- 内容: {$posts[h].pcontent} >
- 发布时间: {$posts[h].ptime|date_format:"%Y-%m-%d %H:%M:%S"} >
- {/div} >
OUTPUT:
标题:标题一内容:内容一发布时间:2008-1-1 10:20:15
标题:标题二内容:内容二发布时间:2008-4-1 8:1:12
表category 文章分类表
cid 文章分类ID
cname 分类名
这里要循环出所有分类,以及分类下的所有帖子,也就是一个嵌套循环。
PHP
PHP代码
- $sql = "SELECT * FROM category" ;
- $result =mysql_query( $sql );
- $cat = array (); //第一层数组
- while ( $array1 =mysql_fetch_array( $result )){ //第一层数据
- $sql2 = "SELECT * FROM posts WHERE cid={$cat[cid]}" ;
- $rs =mysql_query( $sql2 );
- $posts = array (); //第二层数组
- while ( $array2 =mysql_fetch_array( $rs )){ //第二层数据
- array_push ( $posts , $array2 ); //压入数组posts 中
- }
- $array1 [ 'posts' ]= $posts ; // 把第二层数组指定为第一层数据中的一个成员
- array_push ( $cat , $array1 ); //把数据放入数组$cat 中
- }
- $smarty ->assign( 'cat' , $cat );
XML/HTML代码
- {div name = sec1 loop =$cat} >
- 分类: {$cat[sec1].cname} >
- {div name = sec2 loop =$cat[sec1].posts} >
- 标题: {$cat[sec1].posts[sec2].ptitle} >
- 内容: {$cat[sec1].posts[sec2].pcontent} >
- 发布时间: {$cat[sec1].posts[sec2].pcontent|date_format:"%Y-%m-%d %H:%M:%S"} >
- {/div} >
OUTPUT:
分类:分类1
标题:标题一内容:内容一发布时间:2008-1-1 10:20:15
标题:标题二内容:内容二发布时间:2008-4-1 8:1:12
分类:分类2
标题:标题三内容:内容三发布时间:2008-1-1 10:20:15
标题:标题四内容:内容四发布时间:2008-4-1 8:1:12

lambda表达式跳出循环,需要具体代码示例在编程中,循环结构是经常使用的一种重要语法。然而,在特定的情况下,我们可能希望在循环体内满足某个条件时,跳出整个循环,而不是仅仅终止当前的循环迭代。在这个时候,lambda表达式的特性可以帮助我们实现跳出循环的目标。lambda表达式是一种匿名函数的声明方式,它可以在内部定义简单的函数逻辑。它与普通的函数声明不同,

注:本文以Go语言的角度来比较研究循环和递归。在编写程序时,经常会遇到需要对一系列数据或操作进行重复处理的情况。为了实现这一点,我们需要使用循环或递归。循环和递归都是常用的处理方式,但在实际应用中,它们各有优缺点,因此在选择使用哪种方法时需要考虑实际情况。本文将对Go语言中的循环和递归进行比较研究。一、循环循环是一种重复执行某段代码的机制。Go语言中主要有三

Iterator接口Iterator接口是一个用于遍历集合的接口。它提供了几个方法,包括hasNext()、next()和remove()。hasNext()方法返回一个布尔值,指示集合中是否还有下一个元素。next()方法返回集合中的下一个元素,并将其从集合中删除。remove()方法从集合中删除当前元素。以下代码示例演示了如何使用Iterator接口来遍历集合:Listnames=Arrays.asList("John","Mary","Bob");Iterator

所有编程语言都离不开循环。因此,默认情况下,只要有重复操作,我们就会开始执行循环。但是当我们处理大量迭代(数百万/十亿行)时,使用循环是一种犯罪。您可能会被困几个小时,后来才意识到它行不通。这就是在python中实现矢量化变得非常关键的地方。什么是矢量化?矢量化是在数据集上实现(NumPy)数组操作的技术。在后台,它将操作一次性应用于数组或系列的所有元素(不同于一次操作一行的“for”循环)。接下来我们使用一些用例来演示什么是矢量化。求数字之和##使用循环importtimestart

Python入门代码:学习必备的5个实例Python是一种简单易学的高级编程语言,广泛用于数据分析、机器学习、网络爬虫等领域。对于初学者来说,掌握一些基本的Python代码是很重要的。本文将介绍5个简单的实例代码,帮助初学者快速入门Python编程。打印Hello,World!print("Hello,World!")这是Python

如何处理PHP循环嵌套错误并生成相应的报错信息在开发中,我们经常会用到循环语句来处理重复的任务,比如遍历数组、处理数据库查询结果等。然而,在使用循环嵌套的过程中,有时候会遇到错误,如无限循环或者嵌套层数过多,这种问题会导致服务器性能下降甚至崩溃。为了更好地处理这类错误,并生成相应的报错信息,本文将介绍一些常见的处理方式,并给出相应的代码示例。一、使用计数器来

循环与迭代:编程中的核心概念循环和迭代是编程中必不可少的概念,它们允许程序重复执行一组指令。循环用于明确指定重复的次数,而迭代则用于遍历集合或数据结构中的元素。循环类型有三种主要类型的循环:1.for循环for循环用于当你知道重复次数时执行代码块。它的语法如下:for(初始化;条件;递增/递减){//要重复执行的代码块}例如,以下for循环打印数字1到10:for(inti=1;i

在Web开发领域中,分类查询是一个很常见的需求,无论是电商平台还是内容管理系统,都存在着以分类为基础的数据展示方式。而随着分类层数的增加,查询子分类的任务也变得越来越复杂。本文将介绍一种高效的PHP循环查询子分类的方法,帮助开发者们轻松实现分类层次结构的管理。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
