<?php $array = [ ["item_id" => "1", "customer_id" => "53453", "name" => "Item3", "price" => 0, "quantity" => 1], ["item_id" => "3","customer_id" => "53453","name" => "Item1","price" => 0,"quantity" => 1], ["item_id" => "2","customer_id" => "765656","name" => "Item2","price" => 0,"quantity" => 1], ]; $finalArray = []; foreach ($array as $item) { $customer_id = $item['customer_id']; $finalArray[$customer_id][] = [ 'name' => $item['name'], 'price' => $item['price'], 'quantity' => $item['quantity'], ]; } print_r($finalArray);
You have javascript disabled. You will not be able to edit any code.