我在数据库中有 8 个或更多产品:
<?php if (!empty($this->products)){
echo "<ul>";
foreach ($this->products as $product){
?>
8 items inserted here
<?
}
echo "</ul>";
}
php?>
所以我想要的是数据库上的8个或更多产品将像这样放置:
<ul>
<li>
<div>Product here</div>
<div>Product here</div>
<div>Product here</div>
<div>Product here</div>
</li>
<li>
<div>Product here</div>
<div>Product here</div>
<div>Product here</div>
<div>Product here</div>
</li>
</ul>
所以每个 4 产品<li>
。我该如何做到这一点并知道这是来自 foreach 循环?