PHP Break

PHP break statement breaks the execution of the current for, while, do-while, switch, and for-each loop. If you use break inside inner loop, it breaks the execution of inner loop only.

The break keyword immediately ends the execution of the loop or switch structure. It breaks the current flow of the program at the specified condition and program control resumes at the next statements outside the loop.

The break statement can be used in all types of loops such as while, do-while, for, foreach loop, and also with switch case.

Syntax

snippet
jump statement;
break;

Flowchart

PHP break statement flowchart

PHP Break: inside loop

Let's see a simple example to break the execution of for loop if value of i is equal to 5.

snippet
<?php  
for($i=1;$i<=10;$i++){  
echo "$i <br/>";  
if($i==5){  
break;  
}  
}  
?>

Output:

Output
1 2 3 4 5

PHP Break: inside inner loop

The PHP break statement breaks the execution of inner loop only.

snippet
<?php  
for($i=1;$i<=3;$i++){  
 for($j=1;$j<=3;$j++){  
  echo "$i   $j<br/>";  
  if($i==2 && $j==2){  
   break;  
  }  
 }  
}  
?>

Output:

Output
1 1 1 2 1 3 2 1 2 2 3 1 3 2 3 3

PHP Break: inside switch statement

The PHP break statement breaks the flow of switch case also.

snippet
<?php      
$num=200;      
switch($num){      
case 100:      
echo("number is equals to 100");      
break;      
case 200:      
echo("number is equal to 200");      
break;      
case 50:      
echo("number is equal to 300");      
break;      
default:      
echo("number is not equal to 100, 200 or 500");      
}     
?>

Output:

Output
number is equal to 200

PHP Break: with array of string

snippet
<?php
//declare an array of string
$number = array ("One", "Two", "Three", "Stop", "Four");
foreach ($number as $element) {
if ($element == "Stop") {
break;
}
echo "$element </br>";
}
?>

Output:

Output
One Two Three

You can see in the above output, after getting the specified condition true, break statement immediately ends the loop and control is came out from the loop.

PHP Break: switch statement without break

It is not essential to break out of all cases of a switch statement. But if you want that only one case to be executed, you have to use break statement.

snippet
<?php
$car = 'Mercedes Benz';
switch ($car) {  
default:
echo '$car is not Mercedes Benz<br>';
case 'Orange':
echo '$car is Mercedes Benz';
}
?>

Output:

Output
$car is not Mercedes Benz $car is Mercedes Benz

PHP Break: using optional argument

The break accepts an optional numeric argument, which describes how many nested structures it will exit. The default value is 1, which immediately exits from the enclosing structure.

snippet
<?php
$i = 0;
while (++$i) {
    switch ($i) {
        case 5:
            echo "At matched condition i = 5<br />\n";
            break 1;  // Exit only from the switch. 
       case 10:
            echo "At matched condition i = 10; quitting<br />\n";
            break 2;  // Exit from the switch and the while. 
       default:
            break;
    }
}?>

Output:

Output
At matched condition i = 5 At matched condition i = 10; quitting
Note
Note: The break keyword immediately ends the execution of the current structure.
Related Tutorial
Follow Us
https://www.facebook.com/Rookie-Nerd-638990322793530 https://twitter.com/RookieNerdTutor https://plus.google.com/b/117136517396468545840 #
Contents +