phpde döngü
$control = false;
foreach ($products[$id] as $pro) {
if (strstr($pro->aroma, $product_item->aroma)) {
$pro->count++;
$control = false;
} else {
$control = true;
}
}
if ($control == true) {
array_push($products[$id], $product_item);
}
beyler $control döngü olduğu için mutlaka 1 veya daha fazla kere true oluyor benim istediğim tüm döngüde varsa eger hep false olsun tüm döngüde hiç yoksa true olsun bunu nasıl yapabilirim sizce ?