From 37cacb933cd2811fe99b2b623673f7a279151b42 Mon Sep 17 00:00:00 2001 From: Damien Seguy Date: Tue, 17 Jul 2001 17:29:44 +0000 Subject: [PATCH] <> is also accepted. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@51671 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/operators.xml | 5 +++++ 1 file changed, 5 insertions(+) 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