Which logical operators are allowed in PHP?
A,B,D
Correct answer
Explanation
PHP supports multiple logical operators: '&&' and 'and' both represent logical AND, '||' and 'or' represent logical OR, and '!' represents logical NOT. The symbol variants have different precedence levels but the same logical functionality. 'nxor' is not a valid PHP operator.