Font-size: A A A
Logical OR.
The logical OR operator returns TRUE if one or both operands evaluate to TRUE.
<?php if (TRUE || FALSE) if (5 == 4 || 2 != 1) print "TRUE!"; ?>
TRUE!
Both if statements are true.