[PHP Activity][6.12] คำสั่ง exit
กิจกรรม 6.11 คำสั่ง exit Code <?php // ลูปที่ 1 echo "เริ่มลูปที่ 1<br>"; $test = "A"; while ($test< "Z"){ echo "[". $test ."]"; if ($test == "L"){ echo "<br>"; exit; } $test++; } echo "เริ่มลูปที่ 2<br>"; //ลูปที่ 2 for ($num=10;$num>=0;$num-=2){ echo "[" . $num ."]"; } ?>