3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = [ ['cust' => 'XT8900', 'type' => 'standard', 'level' => 1], ['cust' => 'XT8944', 'type' => 'standard', 'level' => 1], ['cust' => 'XT8922', 'type' => 'premier', 'level' => 3], ['cust' => 'XT8816', 'type' => 'permier', 'level' => 3], ['cust' => 'XT7434', 'type' => 'standard', 'level' => 7], ]; var_export( array_reduce( array_keys($array), function($result, $key) use ($array) { $result[array_pop($array[$key])][$key] = $array[$key]; return $result; } ) );

preferences:
41.08 ms | 402 KiB | 5 Q