gpt4 book ai didi

php - foreach 结果分为两列

转载 作者:行者123 更新时间:2023-11-29 21:25:43 26 4
gpt4 key购买 nike

亲爱的 stackoverflow 专家,

我想将 foreach 分成两列,我的脚本是:

<?php $items = $wpo_wcpdf->get_order_items();
if( sizeof( $items ) > 0 ) : foreach( $items as $item ) : ?>
<tr>
<td class="description">
<?php echo $item['name']; ?><?php echo $item['meta']; ?>
<?php echo $item['quantity']; ?>
</td>
</tr>
<?php endforeach; endif; ?>

(例如结果:ANDREW 10)

我想要将结果分为两列(第 1 列:ANDREW 10,第 2 列,SITO 11?

最佳答案

更改自

<?php $items = $wpo_wcpdf->get_order_items();
if( sizeof( $items ) > 0 ) : foreach( $items as $item ) : ?>
<tr>
<td class="description">
<?php echo $item['name']; ?><?php echo $item['meta']; ?>
<?php echo $item['quantity']; ?>
</td>
</tr>
<?php endforeach; endif; ?>

    <?php $items = $wpo_wcpdf->get_order_items();$i=0;
if( sizeof( $items ) > 0 ) : foreach( $items as $item ) : if($i%2==0){ ?>

<tr>
<td class="description">
<?php echo $item['name']; ?><?php echo $item['meta']; ?>
<?php echo $item['quantity']; ?>
</td>
</tr>
<?php $i++; } endforeach; endif; ?>

关于php - foreach 结果分为两列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35519312/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com