Help for this page

Select Code to Download


  1. or download this
    use Date::Simple ('today');
    
    ...
    my $year  = $today->year;
    my $month = $today->month;
    my $day   = $today->day;
    
  2. or download this
    use Date::Simple ('today');
    
    my $today = today()->month . '.' . today()->day . '.' . today()->year;
    
  3. or download this
    use Time::Piece;
    
    my $t = localtime;
    my $todays_date = $t->mdy('.');
    
  4. or download this
    use Time::Piece;
    
    my $t = localtime;
    my $todays_date = $t->strftime('%d.%m.%y');
    
  5. or download this
    use Time::Piece;
    
    my $t = localtime;
    my $todays_date = $t->strftime('%x');