我正在尝试从 PHP 数组创建两个无序列表,我发现这个线程几乎是我正在寻找的,但我希望第一个列表有 11 个项目,第二个列表有其余的。这是我的代码:
<?php if ($rows) :
$items = count($rows);
$split = ceil($items/2);
$firsthalf = array_slice($rows,$split);
$secondhalf = array_slice($rows,0,$split);
?>
<div class="tickets">
<div class="col1">
<ul>
<?php foreach ($firsthalf as $item) : ?>
<li><a href="">test 1</a></li>
<?php endforeach; ?>
</ul>
</div>
<div class="col2">
<ul>
<?php foreach ($secondhalf as $item) : ?>
<li><a href="">test 2</a></li>
<?php endforeach; ?>
</ul>
</div>
<div class="clear"></div>
</div>
<?php endif; ?>