Help for this page
if ($a || $b xor $c || $d) { ... } if ($a xor $b) { ... }
if (($a || $b) xor ($c || $d)) { ... }
if ($a ^ $b || $c ^ $d) { ... }