Operator
Bedeutung
Beispiel
= =
Gleich
$a == $b
!=
Ungleich
$a! = $b
<</td>
Kleiner als
$a < $b
>>
Größer als
$a > $b
<=
Kleiner gleich
$a <= $b
>>=
Größer gleich
$a >= $b
Operator
Bedeutung
Beispiel
!
Nicht
! $a
&&
Und
$a && $b
||
Oder
$a || $b
and
Und
$a and $b
xor
Entweder oder
$a xor $b
or
Oder
$a or $b
Operator
Bedeutung
Beispiel
+
Addition
$a = 7 + 3
-
Subtraktion
$a = 7 - 3
*
Multiplikation
$a = 7 * 3
/
Division
$a = 7 / 3
%
Modulo
$a = 7 % 3
Der Operator % Modulo gibt den Rest einer Division aus. Gibt es keinen Rest,
ist das Ergebnis 0
Beispiele:
echo 10 % 5 //Ergebnis=0
echo 11 % 5 //Ergebnis=1
echo 13 % 5 //Ergebnis=3
Operator
Bedeutung
Beispiel
!
Nicht
! $a
&&
Und
$a && $b
||
Oder
$a || $b
and
Und
$a and $b
xor
Entweder oder
$a xor $b
or
Oder
$a or $b
Operator
Bedeutung
Beispiel
+
Addition
$a = 7 + 3
-
Subtraktion
$a = 7 - 3
*
Multiplikation
$a = 7 * 3
/
Division
$a = 7 / 3
%
Modulo
$a = 7 % 3
Der Operator % Modulo gibt den Rest einer Division aus. Gibt es keinen Rest,
ist das Ergebnis 0
Beispiele:
echo 10 % 5 //Ergebnis=0
echo 11 % 5 //Ergebnis=1
echo 13 % 5 //Ergebnis=3
piel
+
Addition
$a = 7 + 3
-
Subtraktion
$a = 7 - 3
*
Multiplikation
$a = 7 * 3
/
Division
$a = 7 / 3
%
Modulo
$a = 7 % 3
Der Operator % Modulo gibt den Rest einer Division aus. Gibt es keinen Rest,
ist das Ergebnis 0
Beispiele:
echo 10 % 5 //Ergebnis=0
echo 11 % 5 //Ergebnis=1
echo 13 % 5 //Ergebnis=3