<?php $stores = [ 0 => "store3", 1 => "store", 2 => "store2" ]; $products = [ 0 => [ "store" => "store", "product" => "1" ], 1 => [ "store" => "store", "product" => "4" ], 2 => [ "store" => "store2", "product" => "2" ], 3 => [ "store" => "store2", "product" => "3" ], 4 => [ "store" => "store3", "product" => "7" ], 5 => [ "store" => "store3", "product" => "11" ] ]; $array = []; array_walk($products, function ($value, $key) use ($stores, &$array) { $array[$value['store']][] = $value['product']; }); print_r($array);
You have javascript disabled. You will not be able to edit any code.