Font-size: A A A
Logical AND.
The logical AND operator returns TRUE if both operands evaluate to TRUE.
<?php if (TRUE && TRUE) if (1 && 0 == 0) print "TRUE!"; ?>
TRUE!
The expressions in the if statements evaluate to TRUE.