Help for this page

Select Code to Download


  1. or download this
    for ($i = 0; $i < @array; $i++) {
       if (matches($array[$i])) {
          $found = $array[$i-1];
       }
    }
    
  2. or download this
    foreach $item (@array) {
       if (matches($item)) {
    ...
       }
       $last = $item;
    }