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

@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'); 
A good decision is based on knowledge and not on numbers. - Plato

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 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