I am trying to format a time in ("h:i a"). My function getSessionStartTime returns a time in the following format:
24:00:00
This is the code I am currently using. It outputs 7:00 pm all the time.
date("h:i a",$session->getSessionStartTime())
Am I missing something?