Guest User

Untitled

a guest
Jan 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. <?php
  2.  
  3. $i = 0;
  4. while ($i < 5) {
  5. if ($i == 3) {
  6. break; // exits from the while loop
  7. }
  8. $i++;
  9. }
  10.  
  11. ?>
Add Comment
Please, Sign In to add comment