Possible Duplicate:
php == vs === operator
An easy answer for someone I'm sure. Can someone explain why this expression evaluates to true?
(1234 == '1234 test')
An easy answer for someone I'm sure. Can someone explain why this expression evaluates to true?
|
||||
| show 16 more comments |
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Because you are using the == (similarity) operator and PHP is coercing the string to an int. To resolve it use the === (equality) operator, which checks not only if the value is the same, but also if the data type is the same, so "123" string and 123 int won't be considered equal. |
|||||||||
|
|
In PHP (and JavaScript -- which has slightly different behavior), the comparison operator ==This operator is officially known as the "equality" operator, though that doesn't really fit the normal definition of the word "equality". It does what is known as a type-juggling comparison. If the types of both operands don't match (in your example,
It has a counterpart (type-juggling) inequality operator, ===The
It has a counterpart (strict) inequality operator, QuirksNote that the
You might expect PHP Manual Links |
|||||||||||||||
|
|
When casting a string to an integer, any numeric characters up to the first non-numeric character becomes the number. Thus Thus If you want to force a string comparison, you should cast to string:
|
|||||
|
|
You are loosely comparing two different types of data (an integer and a string). PHP has a very detailed chart of how comparisons work in their system when using the loose comparison binary operator (==): http://php.net/manual/en/types.comparisons.php If you want to ensure that the types are also in sync, that is that they are both integers or both strings, use the strong type comparison operator (===). Note that, when using this operator, this will also return false:
If you are unsure of your types when comparing, you can couple the strong-type comparison with PHP typecasting:
|
|||
|
|
|
The double equals will tell php to parse an int from the string. The string will evaluate to the integer 1234. Use triple equals '===' to get exact comparison. |
|||
|
|
|
If you compare a number with a string or the comparison involves numerical strings, then each string is converted to a number and the comparison performed numerically
|
|||
|
|
1234 == '1234'in question (which is somewhat understandable without a complex reason); here the question is about1234 == '1234 test'(which would be false in JavaScript, and is much less "expected" at first glance). – user166390 Aug 28 '12 at 3:33