Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 1st, 2012  |  syntax: None  |  size: 0.33 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2. function test($x, $y, $z) {
  3.   var_dump(($x || $y) && ($z || $y));
  4.   var_dump(($x && $z) || $y);
  5. }
  6.  
  7. test(TRUE, TRUE, TRUE);
  8. test(TRUE, FALSE, TRUE);
  9. test(TRUE, TRUE, FALSE);
  10. test(FALSE, FALSE, TRUE);
  11. test(FALSE, TRUE, FALSE);
  12. test(TRUE, FALSE, FALSE);
  13. test(TRUE, FALSE, TRUE);
  14. test(FALSE, TRUE, TRUE);
  15. test(FALSE, FALSE, FALSE);