Skip to content
Advertisement

Multidimensional indexed array to associative array depending on column value

I have a multidimensional indexed array. Each element is an associative array with an id column which is unique between elements (its value never repeats within the array).

JavaScript

My goal is to convert this array into a multidimensional associative array, indexed by id values.

JavaScript

My best attempt so far is to loop over array elements and manually create the final array.

JavaScript

I think it’s not the most elegant solution. Is it possible to obtain the same result with built-in (more efficient) functions?

Advertisement

Answer

The truth is php DOES offer a single, native function that allows you to replace the outer indexes with the values of a single column. The “magic” is in the 2nd parameter which tells php not to touch the subarray values when assigning the new keys.

Code: (Demo)

JavaScript

Output:

JavaScript

This even works on an array of objects. The end result is an array of objects with new, associative first-level keys. (Demo)

JavaScript

Output:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement