In PHP how to remove dates from an array having a same year, month and day with higher times?
array(7) {
[0]=> string(19) "2012-06-11 08:30:49"
[1]=> string(19) "2012-06-11 08:03:54"
[2]=> string(19) "2012-05-26 23:04:04"
[3]=> string(19) "2012-05-27 08:30:00"
[4]=> string(19) "2012-06-08 08:30:55"
[5]=> string(19) "2012-06-08 08:31:12"
[6]=> string(19) "2012-06-08 08:55:24"
}
Will remove array[0],array[5],array[6]
Output:
('2012-06-11 08:03:54',''2012-05-26 23:04:04','2012-05-27 08:30:00','2012-06-08 08:30:55')
OR
'2012-06-11 08:03:54'
'2012-05-26 23:04:04'
'2012-05-27 08:30:00'
'2012-06-08 08:30:55'
In other words, I only want the earliest date on distinct days.
