foreach ($items as $itemIndex=>$item) {
foreach($item['stocks'] as $stockIndex=>$stock) {
if ($stock['type'] === "fbo") {
unset($items[$itemIndex]['stocks'][$stockIndex]);
$items[$itemIndex]['stocks'] = array_values($items[$itemIndex]['stocks']);
}
}
}