主要介绍了php中smarty区域循环的方法,实例分析了smarty中foreach循环与section循环的使用技巧,需要的朋友可以参考下:
<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'); //显示页面
?>
镭拓科技专注于广州网站制作,广州网站设计,手机网站建设,微信网站建设等服务,需要请随时联系我们!