Answers for "why hi = hours minute php^"

PHP
4

how to add hour minute seconds in php datetime

date('Y-m-d H:i',strtotime('+1 hour +20 minutes',strtotime($start)));
Posted by: Guest on August-13-2020
0

Hours to minute convert in php

function hoursTominutes($time){
    $time = explode(':', $time);
    return ($time[0]*60) + ($time[1]) + ($time[2]/60);
}
Posted by: Guest on March-16-2022

Browse Popular Code Answers by Language