Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2.  
  3. $var = 2;
  4.  
  5. if($var != 1){
  6. stop execution and go to the top and start executing again...
  7. }else{
  8. echo $var;
  9. }
  10. ?>
  11.  
  12. <?php
  13. while(true){
  14. $var = 2;
  15. if($var != 1){
  16. continue;
  17. }else{
  18. echo $var;
  19. break;
  20. }
  21. }
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement