I saw
if($output !== false){
}
It almost works like not equal. Does it has any extra significance?
|
I saw
It almost works like not equal. Does it has any extra significance? |
|||||||
|
|
They are the strict equality operators ( ===, !==) , the two operands must have the same type and value in order the result to be true. For example:
More information: |
|||
|
|
|
PHP’s === Operator enables you to compare or test variables for both equality and type. So !== is (not ===) |
|||
|
|
|
will output just 'world', as You should check out the manual page on PHP operators, it's got some good explanations. |
|||
|
|
|
See this question: How do the equality (==) and identity (===) comparison operators differ?. '!==' is the strict version of not equal. I.e. it will also check type. |
|||
|
|
|
yes, it also checks that the two values are the same type. If $output is 0, then !== will return false, because they are not both numbers or booleans. |
|||
|
|