關鍵字(keyword) while 構成PHP 中迴圈的一種,常用於沒有確定重複次數的迴圈,同時while ... <?php $i = $j = 1; while ($i <= 9) { if ($i == 4) { $i++; continue; } ...
確定! 回上一頁