Monday, June 23, 2008

PHP: sort an array that is not case sensitive

Whenever I need to sort an array in PHP and not worry about it sorting lower case first, then upper case, I use the following:

array_multisort(array_map(strtolower,$pictureList), SORT_ASC, SORT_STRING, $pictureList);