!=
Comparison Operators
Comparison operators, as their name implies, allow you to compare two values. You may also be interested in viewing the type comparison tables, as they show examples of various type related comparisons.
Example | Name | Result |
---|---|---|
$a == $b | Equal |
TRUE if $a is equal to $b after type juggling. |
$a === $b | Identical | TRUE if $a is equal to 登录查看完整内容
|