Answers for "php time to hours"

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
0

date hour php

//hour notation
$today = date("g");  // 5 pm
$today = date("G");  // 17:00
Posted by: Guest on November-09-2021

Browse Popular Code Answers by Language