Help for this page

Select Code to Download


  1. or download this
    for (...) {
       push @a, $_;
    }
    
  2. or download this
    push @a, ...;
    
  3. or download this
    my @a = ...;
    
  4. or download this
    unless ( ($localtimenoformat - $mdtmnoformat) > 3600 ) {
    
  5. or download this
    if ( ($localtimenoformat - $mdtmnoformat) <= 3600 ) {
    
  6. or download this
         push @files, $ftp->ls;
    
    ...
    
         envia_mail() if !$new_file;
         $ftp->quit or die $ftp->message;
    
  7. or download this
         push @files, $ftp->ls;
    
    ...
    
         envia_mail() if !$new_file;
         $ftp->quit or die $ftp->message;