I have a PHP array that looks like this:
array (size=1)
'Marriot' =>
array (size=7)
0 => string 'doc5.txt' (length=8)
1 => string 'test.txt' (length=8)
2 => string 'test1.txt' (length=9)
3 => string 'test2.txt' (length=9)
4 => string 'test3.txt' (length=9)
5 =>
array (size=1)
'Special Docs' =>
array (size=2)
0 => string 'doc4.txt' (length=8)
1 => string 'doc3.txt' (length=8)
6 =>
array (size=1)
'ADocs' =>
array (size=0)
empty
As you can see, it holds non-associative files, and then two folders, "Special Docs" and "ADocs". My problem is two-fold:
First, I want to move the two folders to the top of the array so that they will be prominent in my view. Second, I want to sort the folders alphabetically (i.e. put "ADocs" above "Special Docs". I have tried array_multisort without success and am sort of stuck here. Anyone know how I might achieve this?
Thanks for your help.