Hi Monks,
What the best way to get 30 days or month ago from today’s date?
Here is what I have and they all print different dates:
se strict;
use warnings;
use Data::Dumper;
use POSIX qw(strftime);
use Date::Calc qw( Today Add_Delta_Days );
# get todays date:::
my $today = sprintf "%04d%02d%02d", Today();
my $month_ago_1 = strftime("%Y%m%d",localtime(time() - 720*60*60));
my $month_ago_2 = sprintf "%04d/%02d/%02d",Add_Delta_Days( Today(), -3
+0 );
print "\n Today = $today\n\n";
print "$month_ago_1 - $month_ago_1\n";
my @date = localtime;
$date[3] -= 4 * 7;
my $month_ago = sprintf "%04d%02d%02d", @date;
print "\n $month_ago\n";
my $month_ago_3 = strftime('%Y-%m-%d', localtime(time - 4 * 7 * 86400
+));
print "\n $month_ago_3\n";
exit;
Thanks for looking!
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.