Help for this page

Select Code to Download


  1. or download this
    foreach (@array) {
      # do someting with $_
    }
    
  2. or download this
    for ($i = 0; $i < @array; ++$i) {
      # do something with $array[$i]
    }
    
  3. or download this
    foreach $i (0 .. $#array) {
      # do something with $array[$i]
    }