Skip to content

Instantly share code, notes, and snippets.

@anazawa
Created February 28, 2013 18:36
Show Gist options
  • Select an option

  • Save anazawa/5058995 to your computer and use it in GitHub Desktop.

Select an option

Save anazawa/5058995 to your computer and use it in GitHub Desktop.
amazing behaviour of CGI::Header
use CGI::Header;
my $h = CGI::Header->new;
$h->expires('now');
warn $h->get('Expires'); # => "Thu, 28 Feb 2013 18:34:22 GMT"
sleep 5;
warn $h->get('Expires'); # => "Thu, 28 Feb 2013 18:34:27 GMT"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment