Welcome Guest, Not a member yet? Register   Sign In
Time calculation between 2 dates
#5

(03-31-2017, 12:14 AM)salain Wrote: @Dave friend solution can be slightly simplify


PHP Code:
 $start = new DateTime("2017-03-09 09:26:00");
 
 $end = new DateTime("2017-03-11 09:25:00");
 
 $interval $start->diff($end);
 
 echo $interval->format('%h hours %i minutes %S seconds'); 

@salain, But that won't give the right answer if the interval is more than a day. Those hours must me added to the result.
Reply


Messages In This Thread
Time calculation between 2 dates - by sakthisiga - 03-30-2017, 12:25 AM
RE: Time calculation between 2 dates - by salain - 03-31-2017, 12:14 AM
RE: Time calculation between 2 dates - by dave friend - 03-31-2017, 05:05 AM
RE: Time calculation between 2 dates - by salain - 03-31-2017, 06:10 AM
RE: Time calculation between 2 dates - by Narf - 03-31-2017, 07:19 AM



Theme © iAndrew 2016 - Forum software by © MyBB