Adedd !== operator

-->PLEASE VERIFY IF I AM CORRECT OR NOT!!!<--

Thanks...


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@29828 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Gabor Hojtsy 2000-08-07 16:14:14 +00:00
parent 9676fa7f54
commit 4bf88ee9c6

View file

@ -188,6 +188,12 @@ $b .= "There!"; // sets $b to "Hello There!", just like $b = $b . "There!";
<entry>Not equal</entry>
<entry>True if $a is not equal to $b.</entry>
</row>
<row>
<entry>$a !== $b</entry>
<entry>Not identical</entry>
<entry>True if $a is not equal to $b, or they are not of the same
type. (PHP4 only)</entry>
</row>
<row>
<entry>$a &lt; $b</entry>
<entry>Less than</entry>
@ -499,7 +505,7 @@ echo "Should be 4: " . $a . "&lt;br&gt;\n";
</row>
<row>
<entry>non-associative</entry>
<entry>== != ===</entry>
<entry>== != === !==</entry>
</row>
<row>
<entry>non-associative</entry>