I get the time:
$today = time(); $date = date(\'h:i:s A\', strtotime($today));
if the current time is \"1:00:00 am\", how do i add 10 more
$tz = new DateTimeZone('Europe/London'); $date = new DateTime($today, $tz); $date->modify('+10 hours'); // use $date->format() to outputs the result.
see DateTime Class (PHP 5 >= 5.2.0)