Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 0.32 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2. $stime = 60 * $start_hrs + $start_min;
  3. $etime = 60 * $end_hrs + $end_min;
  4.  
  5. if($stime>$etime){
  6.         $etime += 24 * 60;
  7. }
  8.  
  9. $duration = $etime - $stime;
  10. $minutes = $duration % 60;
  11. $hours = ($duration - $minutes) / 60;
  12.  
  13. echo "<br>";
  14. echo sprintf("Route was %d hours and %d minutes",$hours,$minutes);
  15. echo "<br>";