Note that using time()+$nDays*24*60*60 can fail when done near midnight near transitions to or from daylight savings time. This is fairly easy to fix, tho:

my $now= time(); my($y,$m,$d)= (localtime( $now + 60*60*(12-(localtime($now))[2]) + $nDays*24*60*60 ))[5,4,3]; print sprintf "%04d-%02d-%02d", 1900+$y, 1+$m, $d; print $/;

Note that the use of $now is required to avoid one race condition but that it isn't enough since doing this calculation near midnight still has a race condition of whether "today" ends up being before mignight or after midnight. So you need to use $now to set all of the dates that get recorded. For this reason, I prefer {NULE}'s solution. But I wanted to point out the problem with two of the other solutions.

        - tye (but my friends call me "Tye")

In reply to (tye)Re: Add A Number of Days to Today's Date by tye
in thread Add A Number of Days to Today's Date by rline

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.