I have an array as follows:
$array = array (
array( 'Day' => 'Monday',
'Start' => '0830',
'End' => '1730'),
array( 'Day' => 'Monday',
'Start' =>'1730',
'End' => '2130'),
array( 'Day' => 'Tuesday',
'Start' => '0600',
'End' => '1100'),
array( 'Day' => 'Tuesday',
'Start' => '0600',
'End' => '0900'),
);
I'm trying to work out how to sort this so the results are sorted first by Day and then by the earliest Start, then End.
Using the above array, the results would be:
Monday 0830-1730
Monday 1730-2130
Tuesday 0600-0900
Tuesday 0600-1100
Can any advise the best way to do this. Thanks