After much searching I haven't been able to find a good explanation on how to use array_multisort() to case insensitively sort a multidimensional array by one field. I find this to be a very helpful feature when dealing with information from database queries so thought I would share.
Case Insensitively Sort a Multidimensional PHP Array using array_multisort()
5.8k Views Asked by damndaewoo At
3
There are 3 best solutions below
0

You could also simply do this:
foreach ($PDOresult as $key => $row) {
$sort_by[$key] = strtolower($row['name']);
}
array_multisort($sort_by, SORT_ASC, $PDOresult);
No special flags are needed as everything that is sorted by is lower case. If you are worried about UTF-8, use mb_strtolower() instead. This will have the same result as the solution with the special flags, but is in my opinion more intuitive.
1

@damndaewoo
SORT_ASC|SORT_NATURAL|SORT_FLAG_CASE
Will give you in some case :
Warning: array_multisort(): Argument #2 is an unknown sort flag
As the documentation say here you should use ',' instead of '|' But you CANNOT do the following :
SORT_ASC,SORT_NATURAL,SORT_FLAG_CASE
Because you will get an unexpected :
Argument #4 is expected to be an array or sorting flag that has not already been specified
instead you are going to use both technics as follow :
array_multisort($sort_by, SORT_ASC,SORT_NATURAL|SORT_FLAG_CASE, $PDOresult);
I should note this only works in php 5.4+
If using php 5.5+ you can skip the
foreach()
and use array_column() instead. Like so:I was tempted to edit this into the well written answer: How can I sort arrays and data in PHP? but I didn't want to screw up the formatting so if someone wants to do that and close this, that would be fine with me.