Help for this page

Select Code to Download


  1. or download this
    my @stat = stat($file);
    my @localtime = localtime($stat[9]);
    my $year = $localtime[5] + 1900;
    
  2. or download this
    my $year = localtime((stat($file))[9])[5] + 1900;