亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

html_table函數(shù)

html_table函數(shù):

自訂函數(shù) html_table 將陣列中的資料填入HTML 表格中.cols 屬性決定表格有多少列.

table_attr , tr_attr 和td_attr 屬性決定表格中tr 和td 標籤的一些附加屬性.?

如果tr_attr 和td_attr 屬性值為數(shù)組,將輪流使用其中的值.?

如果指定了trailpad 屬性,將在表尾最後一行附加一些資料.

#eg:

index.php:
#require('Smarty.class.php');
$smarty = new Smarty ;
$smarty->assign('data',array(1,2,3,4,5,6,7,8,9));
$smarty->assign('tr' ,array('bgcolor="skyblue"','bgcolor="#0f0"'));
$smarty->display('index.tpl');

#index. tpl:
{html_table loop=$data}
{html_table loop=$data cols=4 table_attr='border="0"'}
{html_table loop=$data cols=4 tr_attr =$tr}

輸出:

:微信圖片_20180313123801.png

繼續(xù)學習
||
<?php echo "html_table函數(shù)";