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 do like this
echo date('Y-m-d H:i:s', strtotime('4 minute')); echo date('Y-m-d H:i:s', strtotime('6 hour')); echo date('Y-m-d H:i:s', strtotime('2 day'));