How can I get the hours and minutes of '1:24 pm Tue 19 May'? Thanks
My Test:
<?php
$start_date = date("Y-m-d", strtotime($start_date_full));
$start_time = date("H:i a", strtotime($start_date_full));
echo $start_date . ', ' . $start_time;
Output:
2015-05-19, 00:00