Font-size: A A A
Logical XOR.
This operator is logical XOR.
<?php if (TRUE XOR TRUE) print "TRUE!"; else print "FALSE!"; ?>
FALSE!
An exclusive OR only evaluates to TRUE when exactly one operand is TRUE.