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