473,382 Members | 1,423 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

date/time calculations: calculating exact difference

Hi all,

I have been struggling with a problem all day, I have been unable to come
up with a working solution.

I want to write a function which takes 2 unix timestamps and calculates
the difference. I want it to return the difference in years, months, days,
hours, minutes and seconds (a complete summary). Keeping into account of
course that these are 2 real dates, I dont want it to work with 30.475 as
an average number of days in a month, I want it to work with the supplied
months/years.

The output ought to be: there is 0 years, 7 months, 12 days, 5 hours,
56 minutes and 51 seconds difference.
(I dont want the difference as in 1237438424 seconds but a complete
summary).

Any of my attempts have failed. It is easy to calculate the numbers of
seconds, minutes, hours and days (total only). But I cant get passed
calculating the number of months and years. Furthermore, any of the
libraries from the internet which I have tested seem to be flawed as well,
their results are not precise.

Can this not be done? Anyone?

Kind regards,

Hans Gruber
Jul 17 '05 #1
4 4427
Hans Gruber wrote:
Hi all,

I have been struggling with a problem all day, I have been unable to come
up with a working solution.

I want to write a function which takes 2 unix timestamps and calculates
the difference. I want it to return the difference in years, months, days,
hours, minutes and seconds (a complete summary). Keeping into account of
course that these are 2 real dates, I dont want it to work with 30.475 as
an average number of days in a month, I want it to work with the supplied
months/years.

The output ought to be: there is 0 years, 7 months, 12 days, 5 hours,
56 minutes and 51 seconds difference.
(I dont want the difference as in 1237438424 seconds but a complete
summary).


Look into the date functions. There are functions in there to tell you
how many days are in the current month. Even if you wanted to do this
by hand you could create an array with each month and how many days it
has and check for a leap year.

Then use the date function to work with these.... It will work, but to
get it in your exact format might be a bit of work.

Mike
Jul 17 '05 #2
On Sun, 15 May 2005 20:58:54 -0500, Mike Willbanks wrote:
Hans Gruber wrote:
Hi all,

I have been struggling with a problem all day, I have been unable to come
up with a working solution.

I want to write a function which takes 2 unix timestamps and calculates
the difference. I want it to return the difference in years, months, days,
hours, minutes and seconds (a complete summary). Keeping into account of
course that these are 2 real dates, I dont want it to work with 30.475 as
an average number of days in a month, I want it to work with the supplied
months/years.

The output ought to be: there is 0 years, 7 months, 12 days, 5 hours,
56 minutes and 51 seconds difference.
(I dont want the difference as in 1237438424 seconds but a complete
summary).


Look into the date functions. There are functions in there to tell you
how many days are in the current month. Even if you wanted to do this
by hand you could create an array with each month and how many days it
has and check for a leap year.

Then use the date function to work with these.... It will work, but to
get it in your exact format might be a bit of work.

Mike


Thanks Mike, I was actually thinking up something like that right before I
went to bed last night. Another day of hard work coming up ;)

Hans
Jul 17 '05 #3
I noticed that Message-ID: <pa****************************@nakatomi.de>
from Hans Gruber contained the following:
Thanks Mike, I was actually thinking up something like that right before I
went to bed last night. Another day of hard work coming up ;)


It's easy as you say, to convert seconds into minutes hours days and
weeks. But if you said months what would you mean? Often the secret to
coding something is the correct identification of the problem.

Let's say I want to work out how many months it is till my next birthday
(March 5th). What I'd probably do is ignore the month length difference
and count up. It's May 16th today and so it's 9 months till February
16th. Then it's 13 days till my birthday.

If that's the way you want to work it out then you have your logic. I'm
not going to code it but I think I'd be looking carefully at mktime() if
I was.

--
Geoff Berrow (put thecat out to email)
It's only Usenet, no one dies.
My opinions, not the committee's, mine.
Simple RFDs http://www.ckdog.co.uk/rfdmaker/
Jul 17 '05 #4
On Mon, 16 May 2005 07:54:48 +0100, Geoff Berrow
<bl******@ckdog.co.uk> wrote:
I noticed that Message-ID: <pa****************************@nakatomi.de>
from Hans Gruber contained the following:
Thanks Mike, I was actually thinking up something like that right before I
went to bed last night. Another day of hard work coming up ;)
It's easy as you say, to convert seconds into minutes hours days and
weeks. But if you said months what would you mean? Often the secret to
coding something is the correct identification of the problem.

Let's say I want to work out how many months it is till my next birthday
(March 5th). What I'd probably do is ignore the month length difference
and count up. It's May 16th today and so it's 9 months till February
16th. Then it's 13 days till my birthday.


If your birthday was 30 June and today was 31 May would that be 1
month or just 30 days until your birthday?

Although if you decided the answer was "1 month", be aware you'd get
the same answer on 30 May.

There isn't really a "correct" answer, but the OP should consider
these edge cases.

However, it depends what data represents and how the user will use it.
If long differences are shown to a lower resolution, this anomaly may
not matter. If the time difference is several months, the user may not
be interested in the value down to the minute and second.

For example:

DIFFERENCE :- WHAT TO SHOW 60 days :- months, days.

< 60 days :- days only.
< 7 days :- days, hours.
< 1 day :- hours, minutes.
< 6 hours :- hours, minutes, seconds.

--
David ( @priz.co.uk )
Jul 17 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Marc | last post by:
I've got a PHP script that's using fopen to connect to a remote web server and pick up data. I've run into a problem in calculating elapsed time. The remote web server outputs a time and I'd...
17
by: clintonG | last post by:
When the following code is run on Sat Dec 25 2004 19:54:18 GMT-0600 (Central Standard Time) var today = new Date(); var GMTDate = today.toGMTString(); document.write("GMTDate: " + GMTDate); ...
11
by: lduperval | last post by:
Hi, I`m trying to do date calculations in three types of time zones: local, GMT and specified. The issue I am facing is that I need to be able to specify a date in the proper time zone, and I`m...
0
by: Yuri Ludevig | last post by:
I recently was asked to switch from using raw lv's to file system and the first problem I encountered was with calculating the exact size for tablespaces. This is an example: I create LV and...
2
by: Julie Wardlow | last post by:
Help! I am calculating a future date using the DateAdd function in a query (the calculation also involves an IIf statement), and have managed to get this formula to produce the required result....
8
by: Charlie Brookhart | last post by:
I am creating a program that involves having to find the difference between two dates and converting it to a number to be used for calculations. The problem is that the way it is setup, VB is not...
4
by: jamesyreid | last post by:
Hi, I'm really sorry to post this as I know it must have been asked countless times before, but I can't find an answer anywhere. Does anyone have a snippet of JavaScript code I could borrow...
1
by: b.beeching | last post by:
Not sure if my subject is entirely accurate but here goes. I need to calculate the date difference between a date A and a date B... however date B relies entily on date A. EG: i have an advert...
44
by: user | last post by:
Hi, Let's say I have 2 dates in the b/m format: Date 1 and date 2 How do I check whether Date2 is later than Date 1? Date1. 21-Nov-2006 09:00:00 PM
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.