<?php foreach($header as $rowItem): ?>
<tr>
<?php foreach($rowItem as $headerItem): ?>
<th data-tablesaw-priority="persist" id="<?= $headerItem['id'] ?>" class="<?= $headerItem['class'] ?>"
<?= (isset($headerItem['colspan']))?'colspan="'. $headerItem['colspan'] .'"':'' ?>
<?= (isset($headerItem['rowspan']))?'rowspan="'. $headerItem['rowspan'] .'"':'' ?>
<?= (isset($headerItem['style']))?'style="'. $headerItem['style'] .'"':'' ?> >
<?= $headerItem['text'] ?>
</th>
<?php endforeach ?>
</tr>
<?php endforeach ?>
此循环会有三个<tr> 标签,现在需要在第二个<tr>标签里的<th>添加自定义属性。这需要如何编写?
最简单的,if判断循环出来的key
方法一,使用foreach,新增一个count变量,记录循环次数,如果$count == 1,接下来做该做的事
方法二,使用for,在$i==1时做该做的事