Logical Operators in Order of Precedence : Logical Operators « Operator « PHP
- PHP
- Operator
- Logical Operators
Logical Operators in Order of Precedence
<!--
Operation Operator Class Associativity Example
---------------------------------------------------------------------------------
Logical AND && Binary Left $a && $b
Logical OR || Binary Left $a || $b
Logical NOT ! Unary Right !$a
Logical XOR xor Binary Left $a xor $b
Logical AND and Binary Left $a and $b
Logical OR or Binary Left $a or $b
-->
Related examples in the same category