「php」whileとcontinueを使用するサンプル

書式
while (条件式){
処理コード
}
サンプルコード

$count = 0;

while ($count < 8){
      if ($count === 3) {
            $count ++;
            continue;
      }
      echo "$count"; 
      $count ++;
}

結果
0124567

PHP

Posted by arkgame