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 try this code:
$time = '10:09'; echo date( 'H:i', strtotime( '+1 hour' , strtotime($time) ) );