PHP 結構控制 (Control Structures) - while | do…while

多次重複判斷 Loop (迴圈)

迴圈指循環 (重複) 執行的工作。

while(e){statement}
<?php
$n=mt_rand(1,10000);
echo '<ul>';
while($n%5){
 echo "<li>$n</li>";
 $n=mt_rand(1,10000);
}
echo "<li>$n</li>";
echo '</ul>';
?>
do{statement}while(e);
<?php
echo '<ul>';
do{
 $n=mt_rand(1,10000);
 echo "<li>$n</li>";
}while($n%5);
echo '</ul>';
?>
參考資源

更新日期:

google 論壇

App javascript (groups.google.com/group/app-javascript/)