<?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時做該做的事