码迷,mamicode.com
首页 > Web开发 > 详细

夺命雷公狗---Smarty NO:17 html_table函数

时间:2015-12-09 19:20:39      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

功能:把简单数组转化table表格

基本语法:

{html_table  loop=$data  cols=4  table_attr=’border=”0″‘}

参数说明:

loop:要遍历的数组

cols:每行显示多少列

table_attr:表格的属性,多个属性之间通过空格隔开

 

demo6.html示例代码:

 

<!DOCTYPE html>
<html>
<head>
<meta charset=’utf-8′>
<title></title>
</head>
<body>
{*html_table*}
{html_table loop=$lamp cols=2 table_attr=’border=1 width=500′}
</body>
</html>

 

 

demo6.php代码示例

 

<?php
require “smarty/Smarty.class.php”;
$smarty = new Smarty();
$lamp = array(‘php’,’apache’,’lunux’,’mysql’);
$smarty -> assign(‘lamp’,$lamp);
$smarty -> display(‘demo6.html’);

 

夺命雷公狗---Smarty NO:17 html_table函数

标签:

原文地址:http://www.cnblogs.com/leigood/p/5033406.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!