1. 程式人生 > >php foreach跳出本次/當前迴圈與終止迴圈方法

php foreach跳出本次/當前迴圈與終止迴圈方法

 PHP中用foreach()迴圈中,想要在迴圈的時候,當滿足某個條件時,想要跳出本次迴圈繼續執行下次迴圈,或者滿足某個條件的時候,終止foreach()迴圈,分別會用到:continue 與 break

$arr= array('le','yang','jun','code','life','a','b','c');
$html= '';
foreach($arr as $key => $value){
    if($value == 'a'){
      $html.= $value;
    }
    if($value =='b'){
        $html.= $value;
        continue;// 當 $value為b時,跳出本次迴圈
    }
    if($value =='c'){
        $html.= $value;
        break;// 當 $value為c時,終止迴圈
    }
    //$html.= $value;
}
echo $html; // 輸出: abc