Advertisement
Guest User

Untitled

a guest
Apr 30th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $_r = TRUE + FALSE;
  2. if ($_r) print 'TRUE'; else print 'FALSE'; // Prints TRUE
  3.  
  4. $_r = FALSE * TRUE; // (0 * 1)
  5. if ($_r) print 'TRUE'; else print 'FALSE'; // prints FALSE
  6.  
  7. $_r = FALSE / TRUE; // (0 / 1)
  8. if ($_r) print 'TRUE'; else print 'FALSE'; // prints FALSE
  9.  
  10. $_r = TRUE / FALSE; // (1 / 0)
  11. if ($_r) print 'TRUE'; else print 'FALSE'; // prints Warning: **Division by zero**
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement