我必须在 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 > 标签放在正确的位置,但它无法正常工作。
你有什么想法吗?