<?php $arr = [ (object)['id' => 1, 'nome' => 'T.SHIRT', 'quantita' => 2,], (object)['id' => 2, 'nome' => 'Sweatshirt', 'quantita' => 4,], (object)['id' => 1, 'nome' => 'T.SHIRT', 'quantita' => 4,], ]; $store = []; foreach($arr as $record) { if(isset($store[$record->id])) { $store[$record->id]->quantita += $record->quantita; } else $store[$record->id] = $record; } var_dump($store);
You have javascript disabled. You will not be able to edit any code.