I have this array where days are the key and timings are the values:
Array(
[Mon] => 9:00-10:00,12:00-15:00,10:00-14:00
[Tue] => 9:00-10:00,12:00-15:00
[Wed] => 9:00-10:00,12:00-15:00
[Thu] => 9:00-10:00,12:00-15:00
[Fri] => 9:00-10:00,12:00-15:00
[Sat] => 9:00-10:00,12:00-15:00
[Sun] => 10:00-14:00
)
And I want same array in this way:
Array(
[Mon] => 9:00-10:00,12:00-15:00,10:00-14:00
[Tue/Wed/Thu/Fri/Sat] => 9:00-10:00,12:00-15:00
[Sun] => 10:00-14:00
)
any one can help me on this?
9:00-10:00,12:00-15:00,10:00-14:00inMon? A string? An array?