For example, I have a time in this format:
eg.
09:15 AM
04:25 PM
11:25 AM
How do I convert it to :
09:15
16:25
23:25
Currently my code is :
$format_time = str_replace(" AM", "", $time, $count);
if ($count === 0){
$format_time = strstr($time, ' PM', true);
$format_time = ......
}
However, it seems there are some easier and more elegant way to do this?
$time = '23:45';
echo date('g:i a', strtotime($time));
How do I fit the above sample in my case? Thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…