in reply to Re: Adding to a date using Time::localtime
in thread Adding to a date using Time::localtime
No, not all days have 86400 seconds. (Update: Specifically, in places with Daylight Saving Time, some days are longer and some are shorter. The parent's code will result in the calculated date being off by a day when executed during certain hours of the year. )
If you were limited to core Perl, you'd could do something like the following:
use POSIX qw( strftime ); use Time::Local qw( timegm_nocheck ); # Get date. my ($y, $m, $d) = (localtime())[5, 4, 3]; $m += 1; $y += 1900; # Add to date. $d += 14; # Canonize date. ($y, $m, $d) = (gmtime(timegm_nocheck(0,0,0, $d, $m-1, $y)))[5, 4, 3]; $m += 1; $y += 1900; print(strftime("%x", 0,0,0, $d, $m-1, $y-1900), "\n");
Note: I like keeping $y, $m and $d as a human readable numbers. You could shorten the above by leaving $m 0-based and $y 1900-based.
Note: I don't recommend this approach. Take a minute to install one of the date modules.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Adding to a date using Time::localtime
by kyle (Abbot) on Feb 21, 2007 at 20:13 UTC | |
by jasonk (Parson) on Feb 21, 2007 at 20:23 UTC | |
by kyle (Abbot) on Feb 21, 2007 at 20:41 UTC | |
by davorg (Chancellor) on Feb 22, 2007 at 08:55 UTC | |
by ikegami (Patriarch) on Feb 21, 2007 at 21:17 UTC | |
by scorpio17 (Canon) on Feb 21, 2007 at 21:19 UTC | |
by ikegami (Patriarch) on Feb 21, 2007 at 21:24 UTC | |
by scorpio17 (Canon) on Feb 22, 2007 at 14:05 UTC |