Answers for "add two hours in current time php"

PHP
1

php add hours to current date

$new_time = date("Y-m-d H:i:s", strtotime('+5 hours'));
Posted by: Guest on April-26-2020
2

php datetime add one hour

$date = new DateTime('2006-12-12 15:00');
$date->modify('+1 hour');
echo $date->format('Y-m-d');	// 2006-12-12 16:00
Posted by: Guest on February-16-2022

Code answers related to "add two hours in current time php"

Browse Popular Code Answers by Language