$i = 1; foreach($array as $item){ if($i < 11){ //kod bloğu } $i++; }
$i = 1; foreach($array as $item){ //kod bloğu if($i == 10){ break; } $i++; }