in reply to Re: Re: Localtime
in thread How to get 3-letter month abbreviations ?
use strict; use Calendar::Simple; my $mon = (localtime)[4] + 1; my $yr = ((localtime)[5] + 1900); my @month = calendar($mon, $yr); print $month[-1][-1],"\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Localtime
by powerhouse (Friar) on Feb 14, 2003 at 23:52 UTC |