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

Perhaps not the most elegant - but it works.
PHP Code:
 
  $start 
= new DateTime("2017-03-09 09:26:00");
 
 $end = new DateTime("2017-03-11 09:25:00");
 
 $interval $start->diff($end);
 
 $hrs $interval->24 $interval->h;
 
 echo $hrs." hours ".$interval->format('%i')." minutes"
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 dave friend - 03-30-2017, 07:31 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