Help for this page

Select Code to Download


  1. or download this
    $time_string =~ m/^2013-03-[23][0-9]/
    
  2. or download this
    my (undef,undef,undef,$mday,$mon,$year)=gmtime($mtime);
    if ($year == 2013 && $mon+1 == 3 && 21 <= $mday)
    
  3. or download this
    use strict;
    use warnings;
    ...
        }
    }
    $ftp->quit;