Calculating time diff across midnight - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:05:58Z http://stackoverflow.com/feeds/question/172711 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/172711/calculating-time-diff-across-midnight 0 Calculating time diff across midnight Gustavo Carreno 2008-10-05T21:39:33Z 2008-12-09T02:50:15Z <p>This is the one thing I could never get to work.<br /> My problem is to detect the end of one day and the start of the next and then splitting the diff into each day.</p> <p>Imagine you want to calculate a pay rate but it has to span across midnight.</p> <p>It also applies to calculating time to run on timed system, or time diff it should've run.</p> http://stackoverflow.com/questions/172711/calculating-time-diff-across-midnight/172716#172716 8 Answer by Unkwntech for Calculating time diff across midnight Unkwntech 2008-10-05T21:43:47Z 2008-10-06T02:02:13Z <p>I prefer to record all times in Unix Epoch, that way it's as simple as</p> <pre><code>hoursWorked = ((stopTime - startTime)/60)/60 </code></pre> <p>Here is a full solution it's in PHP but should be easy enough to build to any language:</p> <pre><code>&lt;?php $startTime = "12/31/2008 22:02"; //No AM/PM we'll use 24hour system $endTime = "01/01/2009 06:27"; //Again no AM/PM and we spaned the midnight time gap. /* Use this to test for a normal shift not ocurring durring midnight. $startTime = "01/01/2008 06:02"; //No AM/PM we'll use 24hour system $endTime = "01/01/2008 14:27"; //Again no AM/PM and we spaned the midnight time gap. */ $startTime = split(' ', $startTime); $endTime = split(' ', $endTime); $startTime[1] = split(':', $startTime[1]); $endTime[1] = split(':', $endTime[1]); /* $startTime[0] contains the date $startTime[1][0] contains the hours $startTime[1][1] contains the minutes same is true for endTime */ if($startTime[0] != $endTime[0]) { if(date2epoch($endTime[0]) &gt; date2epoch($startTime[0])) { $minutesWorked1 = (59 - $startTime[1][1]); //Calculate how many minutes have occured from begining of shift to midnight $minutesWorked2 = $endTime[1][1]; //Number of minute from midnight to end of shift $hoursWorked1 = (23 - $startTime[1][0]);//Number of hours from start of shift to midnight $hoursWorked2 = $endTime[1][0];//Number of minutes from midnight to end of shift echo 'Before midnight you worked ' . $hoursWorked1 . ':' . $minutesWorked1 . "\nAfter midnight you worked " . $hoursWorked2 . ':' . $minutesWorked2 . '.'; } else { //SOMETHING MAJOR BAD HAS HAPPENED WHILE LOGGING THE CLOCKINS AND CLOCKOUTS } } else { echo 'Today you worked ' . ($endTime[1][0] - $startTime[1][0]) . ':' . ($endTime[1][1] - $startTime[1][1]); } function date2epoch($date, $format='m/d/Y') { $date = split('/', $date); return mktime('0', '0', '0', $date[0], $date[1], $date[2]); } ?&gt; </code></pre> http://stackoverflow.com/questions/172711/calculating-time-diff-across-midnight/172719#172719 1 Answer by Mark Ransom for Calculating time diff across midnight Mark Ransom 2008-10-05T21:45:39Z 2008-10-05T21:45:39Z <p>If you have a date available, you should be working with the combination of date+time, and it won't be a problem.</p> <p>If you know the time span will be less than 24 hours:</p> <pre><code>if endtime &lt; starttime then endtime = endtime + 24 hours </code></pre> http://stackoverflow.com/questions/172711/calculating-time-diff-across-midnight/172729#172729 2 Answer by Michael Haren for Calculating time diff across midnight Michael Haren 2008-10-05T21:52:31Z 2008-10-05T21:52:31Z <p>In most languages, the Date/DateTime/etc. classes have methods for things like this. When using these, it's best-practice to convert all dates to UTC before performing arithmetic.</p> <p>e.g., C#:</p> <pre><code>// In UTC, preferably DateTime ClockIn; DateTime ClockOut; ClockIn = ...; ClockOut = ...; TimeSpan TimeWorked = ClockOut.Subtract(ClockIn); float HoursWorked = TimeWorked.TotalHours(); </code></pre> http://stackoverflow.com/questions/172711/calculating-time-diff-across-midnight/172758#172758 4 Answer by Robert Rossney for Calculating time diff across midnight Robert Rossney 2008-10-05T22:17:58Z 2008-10-05T22:17:58Z <p>This is obviously a trivial problem in systems where the starting and ending times are data structures that contain both date and time. But there are plenty of systems that don't do this. It's very common for timekeeping systems to have a single record that contains a date, a start time, and an end time. In this case, the problem is less trivial.</p> <p>There are, I think, two questions you're asking:</p> <ol> <li>How can I tell if a time span crosses midnight?</li> <li>If a time span crosses midnight, how much of the time happened on the first day, and how much on the second?</li> </ol> <p>The first question is easily answered: if the end time is before the start time, the time span has crossed midnight.</p> <p>If this is the case, then you have two amounts to calculate. The amount of the time span that occurred on the date is the time between the start time and midnight. The amount of the time span that occurred on the next date is the time between midnight and the end time (i.e. just the end time).</p> http://stackoverflow.com/questions/172711/calculating-time-diff-across-midnight/172884#172884 0 Answer by ShayH for Calculating time diff across midnight ShayH 2008-10-06T00:08:23Z 2008-10-06T00:08:23Z <p>and if both times are not in the same time zone you'll need to convert them to UTC before doing the calculation :) May not be applicable here but it's a common issue.</p>