Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. //1.
  2. if(condition)
  3.     $variable = true;
  4. else
  5.     $variable = false;
  6.  
  7. //or...
  8.  
  9. //2.
  10. if(condition)
  11. {
  12.     $variable = true;
  13. }
  14. else
  15. {
  16.     $variable = false;
  17. }
  18.  
  19. //3.
  20. if(condition) $variable = true;
  21. else $variable = false;
  22.  
  23. //4.
  24. if(condition) {
  25.     $variable = true;
  26. }
  27. else {
  28.     $variable = false;
  29. }
  30.  
  31. //which do you like best? 1, 2, 3 or 4?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement