Guest User

Untitled

a guest
Jun 20th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <?php
  2.  
  3. $a = 1;
  4. $b = 2;
  5. $c = 3;
  6.  
  7. $d = $c | $b;
  8.  
  9. if ($d & $a) {
  10. // This line is reached and it shouldn't be
  11. }
  12.  
  13. $c = 4;
  14.  
  15. $d = $c | $b;
  16.  
  17. if ($d & $a) {
  18. // This line is correctly not reached
  19. }
Add Comment
Please, Sign In to add comment