PHP template engine Smarty built-in function foreach, foreachelse usage and example analysis

墨辰丷
Release: 2023-03-29 15:58:02
Original
1730 people have browsed it

This article mainly introduces the usage of the built-in functions foreach and foreachelse of the PHP template engine Smarty. It analyzes the functions and specific usage skills of foreach and foreachelse in the form of examples. Friends in need can refer to it

In Smarty In a template, you can use foreach to repeat a block. In the template, an array needs to be allocated from PHP. This array can be a multidimensional array. The {foreach} tag in Smarty is the same as the foreach in PHP, except that one of them is used in the template file and the other is used in the PHP script. Therefore, the syntax will be different. However, they all do the same thing, which is to iterate over the contents of an array. There is also a {foreachelse} tag opposite to the {foreach} tag. The function of the {foreachelse} tag is: if the array is empty, then the content in the tag is executed. {foreach} and {/foreach} must appear in pairs in the template. It has four parameters, of which two parameters from and item are necessary. Please see the following list for its parameters:


##AttributeType Whether it is requiredDefault valueDescription##fromitem##n/akey#stringNostringWe use an example to demonstrate {foreach} and Use of {foreachelse}.
string Yes n/aThe name of the array to be looped
string Yes The variable name of the currently processed element
##n/a Currently processed element The key name

name
No n/a The name of the loop, used to access the loop
Example idea: retrieve the content from the database, assign it to an array variable $_html, assign the array variable to the template, and then traverse the array in the template


test.sql (SQL data used)

--
-- 表的结构 `user`
--
CREATE TABLE IF NOT EXISTS `user` (
 `id` mediumint(8) unsigned NOT NULL auto_increment,
 `username` varchar(50) NOT NULL,
 `email` varchar(50) NOT NULL,
 `addTime` datetime NOT NULL default '0000-00-00 00:00:00',
 PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
--
-- 转存表中的数据 `user`
--
INSERT INTO `user` (`id`, `username`, `email`, `addTime`) VALUES
(1, '苍井空', 'canjingkong@sina.com.cn', '2011-10-24 00:00:00'),
(2, '樱木花道', 'ymhd@163.com', '2011-10-24 00:00:00'),
(3, '赤木晴子', 'chimiqingzi@yahoo.com,cn', '2011-10-24 00:00:00'),
(4, '流川枫', 'lcfeng@sina.com', '0000-00-00 00:00:00'),
(5, '蜡笔小新', 'labixiaoxin@sina.com', '2011-10-24 00:00:00'),
(6, '金刚葫芦娃', 'jghlw@sina.com', '2011-10-24 00:00:00');
Copy after login

init.inc.php (Template initialization file)

<?php
 define(&#39;ROOT_PATH&#39;, dirname(__FILE__)); //设置网站根目录
 require ROOT_PATH.&#39;/libs/Smarty.class.php&#39;; //加载 Smarty 模板引擎
 $_tpl = new Smarty(); //创建一个实例对象
 $_tpl->template_dir = ROOT_PATH.&#39;/tpl/&#39;; //重新指定模板目录
 $_tpl->compile_dir = ROOT_PATH.&#39;./com/&#39;; //重新指定编译目录
 $_tpl->left_delimiter = &#39;<{&#39;; //重新指定左定界符
 $_tpl->right_delimiter = &#39;}>&#39;; //重新指定右定界符
?>
Copy after login

index.php (main file)

<?php
 require &#39;init.inc.php&#39;; //引入模板初始化文件
 global $_tpl;
 $_mysqli = new mysqli(); //创建一个 mysqli() 对象
 $_mysqli->connect(&#39;localhost&#39;,&#39;root&#39;,&#39;数据库密码&#39;,&#39;数据库名&#39;); //连接数据库,请您自行设置
 $_mysqli->set_charset(&#39;utf8&#39;); //设置编码
 $_result = $_mysqli->query("select username,email,addTime from user order by id asc");
 $_html = array();
 while (!!$_row=$_result->fetch_assoc()) {
  $_html[] = $_row;
 }
 $_tpl->assign(&#39;data&#39;,$_html); //把数组分配到模板中
 $_tpl->display(&#39;index.tpl&#39;); //引入模板
 $_mysqli->close(); //关闭数据库,释放资源
?>
Copy after login

tpl/index.tpl (template file of main file index.php)

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>foreach,foreachelse</title>
</head>
<body>
 <table align="center" border="1" width="800">
  <{foreach from=$data item="row" name="ls"}> <!-- 这个foreach 循环分配过来的数组有几行数据 -->
   <!-- 在此,我们做几个保留变量 $smarty.foreach 的操作 -->
   <!-- 当数据显示第一条的时候,第一行的表格背景为黄色,使用属性:first -->
   <!-- 当数据显示最后一条的时候,最后一行的表格背景为蓝色,使用属性:last -->
   <!-- 显示下分配过来的数组的总个数,使用属性:total -->
   <{if $smarty.foreach.ls.first}>
   <tr bgcolor="#FFFF00"> <!-- 第一行背景为黄色 -->
   <{elseif $smarty.foreach.ls.last}>
   <tr bgcolor="#0000FF"> <!-- 最后一行背景为蓝色 -->
   <{else}>
   <tr>
   <{/if}>
    <td><{$smarty.foreach.ls.iteration}></td><!-- 注意:这里是保留变量 $smarty.foreach 的使用,iteration:总是从 1 开始,每执行一次增加 1 -->
    <{foreach from=$row item="col" name="lsin"}> <!-- 这个foreach 循环数组内的内容,显示在表格的<td></td>标签里 -->
     <td><{$col}></td>
    <{/foreach}>
   </tr>
  <{foreachelse}> <!-- 如果分配过来的数组中没有数据,那么就执行下面的操作! -->
   <tr>
    <td>对不起!暂时没有数据。</td>
   </tr>
  <{/foreach}>
  <tr>
   <td colspan="4" align="center">分配数组的总记录数为:<{$smarty.foreach.ls.total}>条</td>
  </tr>
 </table>
</body>
</html>
Copy after login

Execution result:

Finally, to summarize, the array $_html passed in the main file index.php is Two-dimensional array. The use of reserved variables $smarty.foreach is based on the name attribute in the {foreach} tag. The reserved variable attributes used are: first (first record), last (last record), iteration (always starts from 1, Each execution increases by 1), total (used to display the number of loop executions)

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's learning.

Related recommendations:

php

Precautions and example analysis of modifying the array key in array_unshift()


php

Method to convert html format to text format

##php
Use curl to obtain data through proxy


The above is the detailed content of PHP template engine Smarty built-in function foreach, foreachelse usage and example analysis. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!