How do you convert between 12 hour time and 24 hour time in PHP?

The Solution to How do you convert between 12 hour time and 24 hour time in PHP? is


// 24-hour time to 12-hour time 
$time_in_12_hour_format  = date("g:i a", strtotime("13:30"));

// 12-hour time to 24-hour time 
$time_in_24_hour_format  = date("H:i", strtotime("1:30 PM"));

~ Answered on 2012-01-05 12:08:32


Most Viewed Questions: