current time plus 1 hour php code example
Example 1: php add hours to current date
$new_time = date("Y-m-d H:i:s", strtotime('+5 hours'));
Example 2: how to add hour minute seconds in php datetime
date('Y-m-d H:i',strtotime('+1 hour +20 minutes',strtotime($start)));