You can also use break with parentheses: break(1);
Note:
Using more nesting level leads to fatal error:
<?php
 while (true) {
    foreach ([1, 2, 3] as $value) {
      echo 'ok<br>';
      break 3; // Fatal error: Cannot 'break' 3 levels
    }
    echo 'jamais exécuter';
    break;
  }
?>



 
			 
                 add a note
 add a note