为了账号安全,请及时绑定邮箱和手机立即绑定

php循环第二次时添加自定义data 属性

php循环第二次时添加自定义data 属性

慕标5832272 2018-11-15 18:13:21
<?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{

        //

    }

}


查看完整回答
反对 回复 2018-12-27
  • 1 回答
  • 0 关注
  • 376 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信