I use strftime to format time from a mysql datetime col over a multilanguage website. My goal ist to get this, like a "decimal time":
6 p.m. to 7.30 p.m. or
2.15 p.m. to 5 a.m.
and not sg. like that:
06:00pm to 07:30pm
02:15pm to 05:00am
Maybe someone can help me out!
I tried with this (My experimental sourcecode):
// $var comes in datetime format from mysql
function formatDateTime($format,$var) {
return strftime("$format",strtotime($var));
// Formats: http://php.net/manual/de/function.strftime.php
}
// mysql fetch: ...
echo formatDateTime('%I:%M%P',$row['dateTimeStart']) ... to ...
echo formatDateTime('%I:%M%P',$row['dateTimeEnd'])
I believe this should do what you want:
Example usage:
Output: