I have an array like this:
[
['translationID'] => 1,
['locale'] => 'nl_BE',
['translation'] => 'U bent aangemeld'
]
[
['translationID'] => 2,
['locale'] => 'de_DE',
['translation'] => 'Sie sind angemeldet als'
]
Now I want an array with all the arrays where key locale = de_DE first! Is this possible?
usort(), yes it is