PHP Break

0
2K

The break statement can be used to jump out of different kind of loops.


Break in For loop

The break statement can be used to jump out of a for loop.

ExampleGet your own PHP Server

Jump out of the loop when $x is 4:

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

Break in While Loop

The break statement can be used to jump out of a while loop.

Break Example

$x = 0;

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


Break in Do While Loop

The break statement can be used to jump out of a do...while loop.

Example

Stop the loop when $i is 3:

$i = 1;

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

Break in For Each Loop

The break statement can be used to jump out of a foreach loop.

Example

Stop the loop if $x is "blue":

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

foreach ($colors as $x) {
  if ($x == "blue") break;
  echo "$x <br>";
}
Try it Yourself »
Pesquisar
Categorias
Leia Mais
Outro
PHP do while Loop
The do...while loop - Loops through a block of code once, and then repeats the loop as...
Por PHP Tutorial 2024-05-17 07:49:22 0 2K
Outro
PHP Numbers
In this chapter we will look in depth into Integers, Floats, and Number Strings. PHP Numbers...
Por PHP Tutorial 2024-05-17 07:37:05 0 3K
Outro
PHP Comments
Comments in PHP A comment in PHP code is a line that is not executed as a part of the program....
Por PHP Tutorial 2024-05-17 07:14:49 0 2K
Outro
PHP for Loop
The for loop - Loops through a block of code a specified number of times. The PHP...
Por PHP Tutorial 2024-05-17 07:49:43 0 2K
Outro
PHP Break
The break statement can be used to jump out of different kind of loops. Break in For...
Por PHP Tutorial 2024-05-17 07:50:37 0 2K