Help for this page

Select Code to Download


  1. or download this
    if ($a || $b xor $c || $d) { ... }
    if ($a xor $b) { ... }
    
  2. or download this
    if (($a || $b) xor ($c || $d)) { ... }
    
  3. or download this
    if ($a ^ $b || $c ^ $d) { ... }