我有一个关于smarty模板的问题,我正在使用PHP和Smarty来生成页面。我想以某种方式计算或确定表的第一行和最后一行。所以我可以为第一个和最后一个TR设置不同的CSS,或者保持原样,如果它只有1 TR。
希望以后我有意义。提前谢谢。
<table class="table-paddings-2" cellspacing="0" cellpadding="0">
<tr>
<th class="table-gray-th-noborder">Search Type</th>
<th class="table-gray-th-noborder">Average Turnaround Time</th>
</tr>
{foreach key=obk item=row from=$report}
<tr>
<td class="td-border-top-only text-align-left">{$row.SearchName}</td>
<td class="td-border-top-only text-align-left">{$row.tt}</td>
</tr>
{/foreach}
</table>
答案 0 :(得分:3)
文档是您的朋友:http://www.smarty.net/docsv2/en/language.function.foreach.tpl
例7.12,7.13:
{* show LATEST on the first item, otherwise the id *}
<table>
{foreach from=$items key=myId item=i name=foo}
<tr>
<td>{if $smarty.foreach.foo.first}LATEST{else}{$myId}{/if}</td>
<td>{$i.label}</td>
</tr>
{/foreach}
</table>