PHP模板引擎Smarty內建函數foreach,foreachelse用法分析,smartyforeachelse
本文執行個體講述了PHP模板引擎Smarty內建函數foreach,foreachelse用法。分享給大家供大家參考,具體如下:
在 Smarty 模板中,您可以使用 foreach 來重複一個區塊。而在模板中則需要從 PHP 中分配過來一個數組。這個數組可以是多維陣列。Smarty 中 {foreach} 標記和 PHP 中 foreach 相同,不同的是它們的一個在模板檔案中使用,一個在 PHP 指令碼中使用。因此,文法會不同。但是,它們的作用都是相同的,即遍曆數組中的內容。與 {foreach} 標記相對的還有一個 {foreachelse} 標記,{foreachelse} 標記的作用是:如果數組為空白,那麼就執行該標記內的內容。 模板中 {foreach} 和 {/foreach} 必須是成對的出現,它有四個參數,其中, from 和 item 兩個參數是必要的。關於它的參數請看下面列表:
屬性 |
類型 |
是否必須 |
預設值 |
描述 |
from |
string |
Yes |
n/a |
待迴圈數組的名稱 |
item |
string |
Yes |
n/a |
當前處理元素的變數名稱 |
key |
string |
No |
n/a |
當前處理元素的鍵名 |
name |
string |
No |
n/a |
該迴圈的名稱,用於訪問該迴圈 |
我們通過一個執行個體,來示範 Smarty 中 {foreach} 和 {foreachelse} 的使用。
執行個體思路:從資料庫中取出內容,賦給一個陣列變數 $_html ,再給這個陣列變數分配給模板,然後在模板中進行該數組的遍曆
test.sql (使用到的 SQL 資料)
---- 表的結構 `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');
init.inc.php (模板初始設定檔案)
<?php define('ROOT_PATH', dirname(__FILE__)); //設定網站根目錄 require ROOT_PATH.'/libs/Smarty.class.php'; //載入 Smarty 模板引擎 $_tpl = new Smarty(); //建立一個執行個體對象 $_tpl->template_dir = ROOT_PATH.'/tpl/'; //重新指定模板目錄 $_tpl->compile_dir = ROOT_PATH.'./com/'; //重新指定編譯目錄 $_tpl->left_delimiter = '<{'; //重新指定左定界符 $_tpl->right_delimiter = '}>'; //重新指定右定界符?>
index.php(主檔案)
<?php require 'init.inc.php'; //引入模板初始設定檔案 global $_tpl; $_mysqli = new mysqli(); //建立一個 mysqli() 對象 $_mysqli->connect('localhost','root','資料庫密碼','資料庫名'); //串連資料庫,請您自行設定 $_mysqli->set_charset('utf8'); //設定編碼 $_result = $_mysqli->query("select username,email,addTime from user order by id asc"); $_html = array(); while (!!$_row=$_result->fetch_assoc()) { $_html[] = $_row; } $_tpl->assign('data',$_html); //把數組分配到模板中 $_tpl->display('index.tpl'); //引入模板 $_mysqli->close(); //關閉資料庫,釋放資源?>
tpl/index.tpl(主檔案 index.php 的模板檔案)
foreach,foreachelse
<{foreach from=$data item="row" name="ls"}> <{if $smarty.foreach.ls.first}>
<{elseif $smarty.foreach.ls.last}>
<{else}>
<{/if}>
<{$smarty.foreach.ls.iteration}> | <{foreach from=$row item="col" name="lsin"}>
<{$col}> | <{/foreach}>
<{foreachelse}>
對不起!暫時沒有資料。 |
<{/foreach}>
分配數組的總記錄數為:<{$smarty.foreach.ls.total}>條 |
執行結果:
最後總結下,主檔案 index.php 中傳遞過去的數組 $_html 為二維數組。保留變數 $smarty.foreach 的使用都是基於 {foreach} 標記中的 name 屬性,使用到的保留變數屬性有:first(首條記錄)、last(末條記錄)、iteration(總是從 1 開始,每執行一次增加 1)、total(用於顯示迴圈執行的次數)
更多關於PHP相關內容感興趣的讀者可查看本站專題:《smarty模板入門基礎教程》、《PHP模板技術總結》、《PHP基於pdo操作資料庫技巧總結》、《PHP運算與運算子用法總結》、《PHP網路編程技巧總結》、《PHP基本文法入門教程》、《php物件導向程式設計入門教程》、《php字串(string)用法總結》、《php+mysql資料庫操作入門教程》及《php常見資料庫操作技巧匯總》
希望本文所述對大家基於smarty模板的PHP程式設計有所協助。
您可能感興趣的文章:
- PHP模板引擎Smarty內建函數詳解
- PHP模板引擎Smarty內建變數調解器用法詳解
- PHP模板引擎Smarty自訂變數調解器用法
- PHP模板引擎Smarty中的保留變數用法分析
- PHP模板引擎Smarty之設定檔在模板變數中的使用方法樣本
- PHP模板引擎Smarty中變數的使用方法樣本
- smarty模板引擎從php中擷取資料的方法
- ThinkPHP使用smarty模板引擎的方法
- 在PHP模板引擎smarty產生隨機數的方法和math函數詳解
- PHP模板引擎Smarty的緩衝使用總結
- php smarty模板引擎的6個小技巧
- [PHP]模板引擎Smarty深入淺出介紹
- PHP模板引擎Smarty內建函數section,sectionelse用法詳解
http://www.bkjia.com/PHPjc/1119977.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1119977.htmlTechArticlePHP模板引擎Smarty內建函數foreach,foreachelse用法分析,smartyforeachelse 本文執行個體講述了PHP模板引擎Smarty內建函數foreach,foreachelse用法。分享給大家...