Help for this page

Select Code to Download


  1. or download this
    use POSIX 'strftime';
    # ...
    say POSIX::strftime('%a, %d %b %Y %T %z', localtime);
    
  2. or download this
    use POSIX 'strftime';
    # ...
    say strftime('%a, %d %b %Y %T %z', localtime);
    
  3. or download this
    use POSIX ();
    # ...
    say POSIX::strftime('%a, %d %b %Y %T %z', localtime);
    
  4. or download this
    use POSIX;
    # ...
    say strftime('%a, %d %b %Y %T %z', localtime);