Hi frnds,
I need to seperate keys based on valuee.
Please check the below array.
Array ( [0] => 10:00 to 10:15, 10:30 to 11:00,
[1] => 10:00 to 10:15, 10:30 to 11:00,
[2] => 10:30 to 12:15,
[3] =>
[4] => 10:00 to 10:15, 10:30 to 11:00,
[5] =>
[6] => 10:30 to 12:15, )
i want to get the keys based on the duplicate values and distinct values like below.
0,1,4
and
2,3,5,6
Please suggest me......
Thanks in Advance...