I have the following array:
(
[0] => Array
(
[schedules] => Array
(
[monday] => 1
[tuesday] => 1
[wednesday] => 1
[thursday] => 1
[friday] => 1
[saturday] => 0
[sunday] => 1
)
)
)
I'd like to sort the elements of this array with the first key being the day tomorrow. Let's say today was Wednesday. I'd want my array to look like this:
(
[0] => Array
(
[schedules] => Array
(
[thursday] => 1
[friday] => 1
[saturday] => 0
[sunday] => 1
[monday] => 1
[tuesday] => 1
[wednesday] => 1
)
)
)
I already have the weekday available (e.g. a string 'thursday'). It gets passed into the function I'm working with.
Any suggestions for achieving this type of sorting? Thanks!