UI Deploy

Curated, Short, Web UI Dev we Love.

Sort Multi-Dimensional Array By Value In PHP

The following code snippet will help to sort multi-dimensional arrays by a value of one of the elements.

If you look at the code below we have an array populated with 3 other arrays, each of them has an ID element, a title element and an order element. At the moment these are simply in order of how they were added to the array but because there is an order element identifying what position they should be in we need to re-sort these in the correct order.

view source

Advertisement