$date = date('H:i', strtotime("17:04")); // 17:04 $date = strtotime("+1 hour", strtotime($date)); $date = date('H:i', $date); //18:04 echo $date;