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
You can use this for 24 hour to 12 hour:
echo date("h:i", strtotime($time));
And for vice versa:
echo date("H:i", strtotime($time));