Logical Operators in PHP

From Free Knowledge Base- The DUCK Project: information for everyone
Jump to: navigation, search
Logical Operators:
-------------------------------------------------------------------------------
$a and $b	And	TRUE if both $a and $b are TRUE.
$a or $b	Or	TRUE if either $a or $b is TRUE.
$a xor $b	Xor	TRUE if either $a or $b is TRUE, but not both.
! $a		Not	TRUE if $a is not TRUE.
$a && $b	And	TRUE if both $a and $b are TRUE.
$a || $b	Or	TRUE if either $a or $b is TRUE.

Reference: http://us3.php.net/manual/en/language.operators.php