it seems that PHP's == operator is case sensitive? so is there any reason to use strcmp()? isit safe to do something like
if ( $password == $password2 ) { ... }
|
it seems that PHP's
|
|||
| show 3 more comments |
|
The reason to use it is because
|
|||||
|
|
You should never use
Just run the above code and you'll see why.
Now, that's a little better. |
|||||||||||||||
|
|
Don't use == in PHP. It will not do what you expect. Even if you are comparing strings to strings, PHP will implicitly cast them to floats and do a numerical comparison if they appear numerical. For example '1e3' == '1000' returns true. |
|||||||||
|
|
Using Note, that it would cast the variable to another data type if the two differs. Examples:
As you can see, these two are from different types, but the result is Using Quick googling yells this speed comparison: http://snipplr.com/view/758/ |
|||
|
|
Always remember, when comparing strings, you should use '===' operator (strict comparison) and NOT '==' operator (loose comparison) |
|||
|
|
|
Well..according to this php bug report , you can even get 0wned.
It gives you a warning , but still bypass the comparison. |
||||
|
|
|
strcmp will return different values based on the environment it is running(Linux/Windows)! The reason is the that it has a bug as the bug report says https://bugs.php.net/bug.php?id=53999 Please handle with care!!Thank you. |
|||
|
|
You can use |
|||||||||||
|
strcmp? – KennyTM Jul 26 '10 at 8:50strcmpis case-sensitive. In some languages, like VB, string comparison may not be, and thus would return a different result. This isn't the case in PHP, though. – cHao Jul 26 '10 at 8:56=in VB is case-sensitive, also the language is not. – KennyTM Jul 26 '10 at 8:59===instead of==because'0XAB' == '0xab'is true. – KennyTM Jul 26 '10 at 9:01