Group By Property

Group array items by a property value.

Code

General
$groups = [];
foreach ($arr as $item) {
    $groups[$item[$key]][] = $item;
}
return $groups;

Parameters

Array of objects

Property to group by

Server

More PHP Snippets