end0tknr's kipple - web写経開発

太宰府天満宮の狛犬って、妙にカワイイ

CGI::Cookieって、CGI.pmに含まれているんですね

http://search.cpan.org/perldoc?CGI::Cookie

そりゃそうか

use CGI::Cookie;
my %cookies = CGI::Cookie->parse($ENV{HTTP_COOKIE});
my $c_val = $cookies{c_atri}->value;
  • expires は、-1d や +3M を指定できますが、詳しくはCGI.pmのドキュメントをご覧下さい。
  1. 30s 30 seconds from now
  2. 10m ten minutes from now
  3. 1h one hour from now
  • 1d yesterday (i.e. "ASAP!")

now immediately

  1. 3M in three months
  2. 10y in ten years time

Thursday, 25-Apr-1999 00:40:33 GMT at the indicated time & date
http://search.cpan.org/perldoc?CGI