Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. $x = 10;
  2. $y = 20;
  3.  
  4. if($x <= $y){
  5. // some code
  6. }
  7. elseif($x >= $y){
  8. $x = $y;
  9. $y = $x;
  10. // same code as if
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement