Yeah, I forgot you can mix offsets (like hours and minutes) using strtotime()...
// Get the current Unix timestamp with the offset.
$time_offset = strtotime("1 hour 10 minutes");
// Convert the timestamp to the format you desire.
$today = date("h:i a l F j, Y", mktime($time_offset));
Or, you should be able to do it all in one step.
$today = date("h:i a l F j, Y", mktime(strtotime('1 hour 10 minutes')));