Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Added RFC 822 tag – Brad Gilbert Oct 5 '08 at 22:41

2 Answers

up vote 23 down vote accepted
use POSIX qw(strftime);
print strftime("%a, %d %b %Y %H:%M:%S %z", localtime(time())) . "\n";
share|improve this answer
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

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'}, ... )
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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