php $num = 10; while(true) { echo $num, "<BR>"; if($num==12) break; $num++; echo $num, "<BR>"; } ?> The output of this PHP example should be: php break ...
確定! 回上一頁