Answers for "foreach loop skip php"

PHP
0

skip an iteration php

<?php 
for ($x = 0; $x < 10; $x++) {
  if ($x == 4) {
    
  continue;
  }
  echo "The number is: $x <br>";
}
?>
Posted by: Guest on April-26-2021

Browse Popular Code Answers by Language