Count By Property

Count occurrences of array elements grouped by a specified property.

Code

General
$values = array_column($arr, $key);
return array_count_values($values);

Parameters

Array of objects

Property to count by

Server

More PHP Snippets