您好,登錄后才能下訂單哦!
這篇文章主要介紹php中如何實現smarty區域循環,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
具體實現方法如下:
<html> <head> <title>Smarty Test</title> </head> <body> <table border=1> {foreach key=key1 item=item1 from=$array1} <tr> <td>{$key1}</td> <td>{$item1}</td> </tr> {/foreach} </table> </body> </html>
<?php require 'libs/Smarty.class.php'; //包含Smarty類庫文件 $smarty = new Smarty; //創建一個新的Smarty對象 $array1 = array(1 => "Simon", 2 => "Elaine", 3 => "Susan"); //定義數組 $smarty->assign("array1",$array1); //對模版中的變量賦值 $smarty->display('test3.htm'); //顯示頁面 ?>
另一種方法:
<html> <head> <title>Smarty Test</title> </head> <body> <table border=1> {section name=section1 loop=$array1} <tr> <td</td> <td>{$array1[section1]}</td> </tr> {/section} </table> </body> </html>
<?php require 'libs/Smarty.class.php'; //包含Smarty類庫文件 $smarty = new Smarty; //創建一個新的Smarty對象 $array1 = array(0 => "Simon", 1 => "Elaine", 2 => "Susan"); //定義數組 $smarty->assign("array1",$array1); //對模版中的變量賦值 $smarty->display('test10.htm'); //顯示頁面 ?>
以上是“php中如何實現smarty區域循環”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。