Help for this page

Select Code to Download


  1. or download this
    perl -e 'print scalar( gmtime(  915725119  ) ),"\n"'
    
  2. or download this
    Thu Jan  7 16:05:19 1999
    
  3. or download this
    perl -MDate::Manip -e 'print UnixDate( ParseDate(scalar(gmtime(9157251
    +19))), "%m/%d/%Y %i:%M:%S %p"), "\n"'
    
  4. or download this
    #!/usr/bin/perl
    
    use POSIX qw( strftime );
    
    print strftime( "%m/%d/%Y %l:%M:%S %p", gmtime( 915725119 ) ), "\n";