Skip to content
Advertisement

Sorting a Multidimensional Array is not sorting appropriately

I’m attempting to sort a multidimensional array. I have attempted:

JavaScript

and

JavaScript

and

JavaScript

None of this will return the following into the correct order sorted ascending by suggested_play_order.

var_dump($matches); returns:

JavaScript

any ideas what I might be doing wrong here?

Advertisement

Answer

Each array has a match index containing an array that contains suggested_play_order. You can use array_column twice extracting all arrays under the match indexes and then suggested_play_order from there:

JavaScript

Also, passing null as the second argument and an index as the third returns the entire array indexed by the third argument. Not what you want.

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