摘要: 案例1:Theitemattribute<?php$arr = array(1000, 1001, 1002);$smarty->assign('myArray', $arr);?>Template to output$myArrayin an un-ordered list<ul>{foreach from=$myArray item=foo} <li>{$foo}</li>{/foreach}</ul>The above example will output:<ul> <li>100 阅读全文
posted @ 2013-03-11 12:17 TBHacker 阅读(850) 评论(0) 推荐(0) 编辑