//如限制5条记录;//没有数字索引时$i=1;foreach($list as $val){ if($i>=5) break; //do $i++;}//有默认索引时foreach($list as $key=>$val){ if($key>=5) break; //do}