Example - while ... <?php $i = 1; while($i < 10){ if($i == 7){ continue;//執行到這邊跳過這一次迴圈,執行下一次 } echo $i++;//輸出$i,並且每次+1 } //output: ...
確定! 回上一頁