vote up 7 vote down star
1

How can I elegantly print the date in RFC822 format in Perl?

flag

Added RFC 822 tag – Brad Gilbert Oct 5 '08 at 22:41

2 Answers

vote up 14 vote down check
use POSIX qw(strftime);
print strftime("%a, %d %b %Y %H:%M:%S %z", localtime(time())) . "\n";
link|flag
Oh, nice, I didn't know there was something in the core that would do this. – Adam Bellaire Oct 5 '08 at 15:15
Thank you ,this is exactly, what I was looking for when I asked for an elegant way :) – Tom Feiner Oct 5 '08 at 15:27
vote up 9 vote down

The DateTime suite gives you a number of different ways, e.g.:

use DateTime;
print DateTime->now()->strftime("%a, %d %b %Y %H:%M:%S %z");

use DateTime::Format::Mail;
print DateTime::Format::Mail->format_datetime( DateTime->now() );

print DateTime->now( formatter => DateTime::Format::Mail->new() );

Update: to give time for some particular timezone, add a time_zone argument to now():

DateTime->now( time_zone => $ENV{'TZ'}, ... )
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.