mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 08:58:56 +00:00
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:
parent
9676fa7f54
commit
4bf88ee9c6
1 changed files with 7 additions and 1 deletions
|
@ -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 < $b</entry>
|
||||
<entry>Less than</entry>
|
||||
|
@ -499,7 +505,7 @@ echo "Should be 4: " . $a . "<br>\n";
|
|||
</row>
|
||||
<row>
|
||||
<entry>non-associative</entry>
|
||||
<entry>== != ===</entry>
|
||||
<entry>== != === !==</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>non-associative</entry>
|
||||
|
|
Loading…
Reference in a new issue