A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 9 Ω


PHP Logikoperatoren


Liste


Basiswissen


PHP kennt wie alle Programmiersprachen verschiedene Operatoren für logische Strukturen. Diese sind hier kurz als Liste vorgestellt.

AND


Called Logical AND operator. If both the operands are true then condition becomes true.: (A and B) is true. Siehe auch logisches UND ↗

OR


Called Logical OR Operator. If any of the two operands are non zero then condition becomes true.: (A or B) is true. Siehe auch logisches ODER ↗

&&


Called Logical AND operator. If both the operands are non zero then condition becomes true.: (A && B) is true. Siehe auch logisches UND ↗

||


Called Logical OR Operator. If any of the two operands are non zero then condition becomes true.: (A || B) is true. Siehe auch logisches ODER ↗

!


Called Logical NOT Operator. Use to reverses the logical state of its operand. If a condition is true then Logical NOT operator will make false. Siehe auch logisches Nicht ↗