Index By Property

Create an object indexed by a property value for fast lookups.

Code

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

Parameters

Array of objects

Property to index by

Server

More PHP Snippets