0
votes
3answers
51 views

Trouble calculating time difference in PHP when doing action

$timeFromMysql = strtotime($createdtime); $currenTime = SPRequest::now();; if ($diff = abs( strtotime( $timeFromMysql ) - strtotime( $currenTime ) > 30*24*60*60) { ACTION } I just wondering ...
2
votes
2answers
97 views

Calculate passed time with PHP

I got the time difference between dates like this : $time1 = "2013-02-25 12:00:00"; $time2 = "2013-01-01 12:00:00"; $tdiff = strtotime($time1) - strtotime($time2); I want extract days, hours and ...
1
vote
2answers
79 views

Why Time difference gives me 2 different results

this code should give 0:40 minutes, however in one way gives me 0:20 minutes, and in the other way gives me 1:40 minutes. var t1 = '12:05'.split(':'), t2 = '12:45'.split(':'); var d1 = new ...
0
votes
1answer
144 views

PHP - Date / Time difference using only working hours [duplicate]

I am trying to create a function that will work out the time difference between 2 times but only includes WORKING HOURS. This is for a project which tracks the time it takes for a job to be completed. ...
1
vote
3answers
194 views

calculate how many leap days between two dates

I have written this code down, my object of the program is to calculate the minutes between two given dates and time. lets say the difference in minute between: 14/1/2016 23:18 and 14/1/2004 23:18 ...
0
votes
2answers
2k views

How to get the difference in minutes between two dates in Microsoft Excel?

I am doing some work in Excel and am running into a bit of a problem. The instruments I am working with save the date and the time of the measurements and I can read this data into Excel with the ...
3
votes
2answers
293 views

get difference in time in HH:MM format php

how can i get this to output HH:MM format? $to_time = strtotime("2008-12-13 10:42:00"); <--AM $from_time = strtotime("2008-12-14 8:21:00"); <-- PM $stat = round(abs($to_time - ...
0
votes
3answers
1k views

simple java program that enables 2 Time-format input and count the time-difference

I'd like to know how to make a simple program where user can gave 2 input time(hh:mm) format ---and receive the elapsing time as the output. the program will run and enable user to write time-input.. ...
5
votes
3answers
7k views

How do I check the difference, in seconds, between two dates?

There has to be an easier way to do this. I have objects that want to be refreshed every so often, so I want to record when they were created, check against the current timestamp, and refresh as ...