I'm not quite sure how to word this question, but I'm looking for the best way to get a date from the current date using how many days ago. For example, if the current date is 2005-03-29.
1 day ago: 2005-03-28
7 days ago: 2005-03-21
14 days ago: 2005-03-14
etc ...
Basically, I want to cover from 1 day ago to 30 days ago. I'm sure there are some Date modules, but I'm not sure the best one to use for this purpose.
Thanks a bunch all !!
~~~~~~~~~~~~~
Thanks all for your help. With a collection of all your feedback, I implemented the following code.
use Date::Manip
my $format = "%Y-%m-%d";
my $time = "1 day ago";
my $date = &UnixDate(ParseDate($time), $format);
print "$date\n";
__OUTPUT__
2005-03-29
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.