すでに結果を製品ごとに注文しているので、次のようにすることができます:
$currentProduct = null;
foreach($products as $product) {
if ($currentProduct != $product['product']) {
// We got a new product. Show it with some fancy html
// Then store it in $currentProduct for the next iteration
$currentProduct = $product['product'];
}
// Show the title with some fancy html
}
既存のdo while
を使用する場合 -代わりにループします。同じです。