php $i = 1; do{ if($i == 7){ break;//執行到這邊結束do...while } echo $i++;//輸出$i,並且每次+1 } while($i < 10); //output:123456 ?> Example - for. <?php for($i= ...
確定! 回上一頁