DateTime would be a better module to use than localtime,
use DateTime; my $dt = DateTime->now(); print "Current Month " . $dt->month_name . "\n"; $dt->subtract( months => 1 ); print "Last Month " . $dt->month_name . "\n"; $dt->subtract( months => 1 ); print "2 Months ago " . $dt->month_name . "\n"; $dt->subtract( months => 1 ); print "3 Months ago " . $dt->month_name . "\n";
In reply to Re: Month Dates
by Herkum
in thread Month Dates
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |