HBcms是一个用Pear框架+Smarty模板引擎构架的cms项目,欢迎大家参与制作Smarty模板

last

last is set to true if the current section iteration is the last one.

如果当前循环执行到最后一次,last 被设置为true.

Example 7-26. section property last
Smarty手册范例 7-26. section 的 last 属性演示

	{section name=customer loop=$custid}
	{if $smarty.section.customer.first}
 	<table>
	{/if}

	<tr><td>{$smarty.section.customer.index} id:
 	{$custid[customer]}</td></tr>

	{if $smarty.section.customer.last}
 	</table>
	{/if}
	{/section}


	输出结果:

	<table>
	<tr><td>0 id: 1000</td></tr>
	<tr><td>1 id: 1001</td></tr>
	<tr><td>2 id: 1002</td></tr>
	</table>
这是一份简单的Smarty手册和Smarty教材,熟练掌握Smarty模板,让您做项目事半功倍