1

我必须在 PHPTAL 中创建特定的表。我有这样的数组:

$tab = array('item1', 'item2', 'item3', 'item4');

决赛桌应该是这样的:

<table>
    <tr>
        <td>Item1</td>
        <td>Item2</td>
    </tr>
    <tr>
        <td>Item3</td>
        <td>Item4</td>
    </tr>
</table>

所以我尝试使用 tal:condition width "repeat/item/odd" 和 "repeat/item/even" 将 < tr > 标签放在正确的位置,但它无法正常工作。

你有什么想法吗?

4

1 回答 1

1
<tr tal:repeat="row php:array_chunk(tab, 2)">
于 2010-07-16T21:00:04.850 回答