Help for this page

Select Code to Download


  1. or download this
    use DateTime::Format::Epoch::MJD qw( );
    
    ...
       DateTime::Format::Epoch::MJD->parse_datetime( $mjd )->ymd(),
       "\n"
    );
    
  2. or download this
    BEGIN {
       package DateTime::Format::Epoch::Excel;
    ...
       DateTime::Format::Epoch::Excel->parse_datetime( 39749 )->ymd(),
       "\n"
    );
    
  3. or download this
    use DateTime::Format::Excel qw( );
    
    ...
       DateTime::Format::Excel->parse_datetime( 39749 )->ymd(),
       "\n"
    );