As you know, the sort() funtion will sort arays like this
Acorns
Bees
Birds
Cows
apples
rocks
I need to sort my arrays like this
Acorns
apples
Bees
Birds
Cows
rocks
I've tried natcasesort() but it's querky.. I haven't looked in to it very far but.. it destoys some array enteries? I also tried using sort(strtolower($array)) but that gave me wrong data type.. as expected. Too bad there isn't a arraytolower() funtion? Is there?
Any advice is apreciated