I am trying to sort an array based on time. The array looks like this
[0] => Array
(
[0] => 11:45:00
[1] => Hull Middle School
[2] => X
[3] => S
)
[1] => Array
(
[0] => 09:00:00
[1] => Hull Middle School
[2] => S
[3] => V
)
[2] => Array
(
[0] => 14:30:00
[1] => Hull Middle School
[2] => S
[3] => W
I've tried various sorts: sort, asort, natcasesort, etc, but nothing seems to work. Not sure what else to try.
Suggestions?