http://www.perlmonks.org?node_id=977461


in reply to Re^2: create array from strftime
in thread create array from strftime

How does one use that to populate $day, $month and $year?

Replies are listed 'Best First'.
Re^4: create array from strftime
by taint (Chaplain) on Jun 20, 2012 at 22:19 UTC
    I used this to populate Month. Couldn't something similar be used for Year & Day?
    use Time::Piece; use strict; my @months = qw( 01 02 03 04 05 06 07 08 09 10 11 12 ); my $t = localtime; print localtime->month(@months);
    my $perl_version( 5.12.4 );
    print $perl_version;