0

我有一个关于 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>
4

1 回答 1

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>
于 2012-08-22T20:12:35.530 回答