I get current time:
$today = time();
$date = date('h:i:s A', strtotime($today));
How do I add 5 hours to the current time?
$today = time();
date('h:i:s A', strtotime('+5 hours'), $today);
strtotime will parse any textual datetime description in English.