PHPでwhile文を使って繰り返し(ループ)処理を実行する
while文を使用して、繰り返し(ループ)処理を実行します。
PHPでは、while文の書き方が、波括弧{}を使う書き方と、コロン:とendwhileを使う書き方の二種類があります。
while_loop.php
<?php

$i = 0;
while ($i < 5) {
    echo "i = " . $i++ . "\n";
}

echo "\n\n";

$j = 0;
while ($j < 5):
    echo "j = " . $j++ . "\n";
endwhile;

?>

      
実行結果
$ php while_loop.php
i = 0
i = 1
i = 2
i = 3
i = 4


j = 0
j = 1
j = 2
j = 3
j = 4