PHPTAL和特定的表

时间:2010-06-18 17:01:58

标签: html-table template-tal phptal

我必须在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:条件宽度“repeat / item / odd”和“repeat / item / even”来适应&lt; tr>标记在正确的位置,但它不能正常工作。

你有什么想法吗?

1 个答案:

答案 0 :(得分:1)

<tr tal:repeat="row php:array_chunk(tab, 2)">