home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-perl-addon-1.4.9-installer.exe / ctime.al < prev    next >
Encoding:
Text File  |  2003-09-17  |  491 b   |  20 lines

  1. # NOTE: Derived from blib\lib\CGI\Session.pm.
  2. # Changes made here will be lost when autosplit is run again.
  3. # See AutoSplit.pm.
  4. package CGI::Session;
  5.  
  6. #line 1111 "blib\lib\CGI\Session.pm (autosplit into blib\lib\auto\CGI\Session\ctime.al)"
  7. # ctime() - returns session creation time
  8. sub ctime {
  9.     my $self = shift;
  10.  
  11.     if ( @_ ) {
  12.         confess "_SESSION_ATIME - read-only value";
  13.     }
  14.  
  15.     return $self->{_DATA}->{_SESSION_CTIME};
  16. }
  17.  
  18. # end of CGI::Session::ctime
  19. 1;
  20.