PHP Continue

0
4KB

The continue statement can be used to jump out of the current iteration of a loop, and continue with the next.


Continue in For Loops

The continue statement stops the current iteration in the for loop and continue with the next.

ExampleGet your own PHP Server

Move to next iteration if $x = 4:

for ($x = 0; $x < 10; $x++) {
  if ($x == 4) {
    continue;
  }
  echo "The number is: $x <br>";
}
Try it Yourself »

Continue in While Loop

The continue statement stops the current iteration in the while loop and continue with the next.

Continue Example

Move to next iteration if $x = 4:

$x = 0;

while($x < 10) {
  if ($x == 4) {
    continue;
  }
  echo "The number is: $x <br>";
  $x++;
}
Try it Yourself »


Continue in Do While Loop

The continue statement stops the current iteration in the do...while loop and continue with the next.

Example

Stop, and jump to the next iteration if $i is 3:

$i = 0;

do {
  $i++;
  if ($i == 3) continue;
  echo $i;
} while ($i < 6);
Try it Yourself »

Continue in For Each Loop

The continue statement stops the current iteration in the foreach loop and continue with the next.

Example

Stop, and jump to the next iteration if $x is "blue":

$colors = array("red", "green", "blue", "yellow");

foreach ($colors as $x) {
  if ($x == "blue") continue;
  echo "$x <br>";
}
Try it Yourself »
Suche
Kategorien
Mehr lesen
Andere
PHP Comments
Comments in PHP A comment in PHP code is a line that is not executed as a part of the program....
Von PHP Tutorial 2024-05-17 07:14:49 0 6KB
Andere
PHP Global Variables - Superglobals
Superglobals were introduced in PHP 4.1.0, and are built-in variables that are always available...
Von PHP Tutorial 2024-05-17 08:08:10 0 10KB
Andere
PHP Introduction
PHP code is executed on the server. What You Should Already Know Before you continue you...
Von PHP Tutorial 2024-05-17 07:08:40 0 4KB
Andere
PHP Loops
In the following chapters you will learn how to repeat code by using loops in PHP. PHP Loops...
Von PHP Tutorial 2024-05-17 07:48:35 0 4KB
Andere
PHP - Concatenate Strings
String Concatenation To concatenate, or combine, two strings you can use...
Von PHP Tutorial 2024-05-17 07:30:24 0 8KB
Sociallez https://sociallez.com