How can I break an outer loop with PHP?


If there are two nested loops, the break statement can be used −

break 2;

Below is a demonstration with the foreach loop −

foreach(...) {
   foreach(...) {
      if (my_var_1.name == my_var_2)
      break 2; //it breaks out of the outermost foreach loop
   }
}

For PHP version>=5.3, the below lines of code can be used −

foreach (...) {
   foreach (...) {
      if (my_var_1.name == my_var_2)
      goto top;
   }
}
top:

Updated on: 06-Apr-2020

154 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements