Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Thomas Beutel http://www.beutelevision.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Create an RFC822 compliant date in Perl

   1  
   2  use Date::Manip qw(ParseDate UnixDate);
   3  
   4  # Create an RFC822 compliant date (current time)
   5  my $rfc822_format = "%a, %d %b %Y %H:%M %Z";
   6  my $today         = ParseDate("Now");
   7  
   8  my $rfc822_date   = UnixDate($today,$rfc822_format);
   9  
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS