<?php $data[] = new stdClass; $data[0]->product_name = '1'; $data[0]->random_value = 'first'; $data[1]->product_name = '2'; $data[1]->random_value = 'second'; $data[2]->product_name = '2'; $data[2]->random_value = 'third'; $data[3]->product_name = '1'; $data[3]->random_value = 'fourth'; $data[4]->product_name = '3'; $data[4]->random_value = 'fifth'; $products = array(); foreach ($data as $data_object) { $products[$data_object->product_name][] = $data_object; } // product names are keys of $products var_dump(array_keys($products)); // products for each key var_dump($products);
You have javascript disabled. You will not be able to edit any code.