diff --git a/language/operators.xml b/language/operators.xml index b25f7a559d..4a6f79c037 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -1,5 +1,5 @@ - + Operators @@ -241,7 +241,7 @@ $b .= "There!"; // sets $b to "Hello There!", just like $b = $b . "There!"; - + &true; if $a is not equal to $b. - $a <> $b + $a <> $b Not equal &true; if $a is not equal to $b. @@ -388,7 +388,7 @@ $b .= "There!"; // sets $b to "Hello There!", just like $b = $b . "There!"; Another conditional operator is the "?:" (or ternary) operator, which operates as in C and many other languages. - + @@ -536,7 +536,7 @@ echo "
$output
"; Postincrement"; $a = 5; echo "Should be 5: " . $a++ . "
\n"; echo "Should be 6: " . $a . "
\n";