說明:do-while循環是先執行,再判斷條件。
do-while循環的基本語法;
do{
語句;//循環體
}while(循環條件);
例:輸出20句“Hello,www.bianceng.cn!”,用do-while循環實現
<?php
$i=0;
do{
echo '<br />'.'Hello,www.bianceng.cn!';
$i++;
}while($i<20);
?>
URL:http://www.bianceng.cn/webkf/PHP/201608/50396.htm