<?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>添加自定义属性。这需要如何编写?
1 回答
qq_花开花谢_0
TA贡献1835条经验 获得超7个赞
方法一,使用foreach,新增一个count变量,记录循环次数,如果$count == 1,接下来做该做的事
方法二,使用for,在$i==1时做该做的事
for($i=0;$i<count($header);$i++)
{
if($i === 1) {
//
}else{
//
}
}
添加回答
举报
0/150
提交
取消