in reply to storing date into variable
In addition to all that is suggested, you may want to take a look at modules that can give you more control , like Time::localtime and Time::gmtime.use strict; use warnings; my $time_var = localtime; my %hash; my @keys = qw(day month date hour year); @hash{@keys}= split " ", $time_var; print "$_->$hash{$_}\n" for keys(%hash);
|
---|