Font-size: A A A
Logical OR.
Like "||", this is a logical OR operator, but has a very low precedence.
<?php if (TRUE OR FALSE) if (5 == 4 OR 2 > 1) print "TRUE!"; ?>
TRUE!
Both if statements evaluate to true.