it looks like the time is in GMT. if you want it to be localized, just do the math.
$hours = {number of hours to offset}
$seconds_per_hour = 60 * 60;
$offset_seconds = $hours * $seconds_per_hour;
$time = time() + $offset_seconds;
$date = date("M j, Y g:i A", $time);