diff --git a/language/operators.xml b/language/operators.xml index 8026b17f57..183a9a30e9 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -202,6 +202,11 @@ $b .= "There!"; // sets $b to "Hello There!", just like $b = $b . "There!"; Not equal &true; if $a is not equal to $b. + + $a <> $b + Not equal + &true; if $a is not equal to $b. + $a !== $b Not identical