Help for this page

Select Code to Download


  1. or download this
    foreach ( @alist ) {
        if ( condition( $_ ) ) {
          do_something( $_ );
        }
    }
    
  2. or download this
    foreach ( @alist ) { condition( $_ ) and do_something( $_ ) }