Gleichheit in PHP
- http://at2.php.net/manual/de/language.operators.comparison.php Vergleichs-Operatoren
-
if ($string == "xxx") echo "ok"; - strcmp() für die Sortierung von Strings
- Achtung: String und Zahl
if ("Hallo Welt" == 0) ... -
if ($string1 == "abc" && $string2 == "def") ... - Ungleichheit
$a != $b // oder: $a <> $b
Klassifikation
• PHP