What is Logical operators?
They combine conditionals and are mostly used to track several conditions at the same time. For example, the PHP (or) operator verifies that at least one out of every two is correct. If you want to check if they’re both legitimate, you may use the PHP (and) operator. For further information, see the table below:
- Operator Name Example Result
- and And
$x
and$y
True if both$x
and$y
are true or Or $x
or$y
True if either$x
or$y
is truexor Xor
$x xor $y
True if either$x
or$y
is true, but not both- && And
$x && $y
True if both$x
and$y
are true || Or
$x || $y
True if either$x
or$y
is true- !
Not !$x
True if$x
is not true
Example:-
Output:-
Latest posts by Ashwani Kumar (see all)
- Top 10 DevOps Trainers in the world - October 7, 2023
- What is Cookies and Why it is Used? - May 24, 2023
- TOP trends of transitions in TikTok - May 10, 2023