I have a time to which I want to add an hour:
$time = \'10:09\';
I\'ve tried:
$time = strtotime(\'+1 hour\'); strtotime(\'+1
You can use:
$time = strtotime("10:09") + 3600; echo date('H:i', $time);
Or date_add: http://www.php.net/manual/en/datetime.add.php
date_add