Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ) { ... }
share|improve this question
1  
What's case-sensitivity have to do with strcmp? – KennyTM Jul 26 '10 at 8:50
@KennyTM: strcmp is 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
@cHao: = in VB is case-sensitive, also the language is not. – KennyTM Jul 26 '10 at 8:59
3  
@jie: You may want to use === instead of == because '0XAB' == '0xab' is true. – KennyTM Jul 26 '10 at 9:01
1  
to use === instead of == is important, because comparing any string to 0 with == will return true which is obviously false... – abimelex Jan 27 at 8:37
show 3 more comments

8 Answers

up vote 29 down vote accepted

The reason to use it is because strcmp

returns < 0 if str1 is less than str2; > 0 if str1 is greater than str2, and 0 if they are equal.

== only returns true or false, it doesn't tell you which is the "greater" string.

share|improve this answer
icic tho in my current case, i dont need to know which string is greater :) – Jiew Meng Jul 26 '10 at 9:11
strcmp with matching strings took 0.207852 seconds strcmp with non-matching strings took 0.215276 seconds === with matching strings took 0.067122 seconds === with non-matching strings took 0.057305 seconds snipplr.com/view/758 – Sop Apr 22 at 17:00

You should never use == for string comparison. === is OK.

$something = 0;
echo ('password123' == $something) ? 'true' : 'false';

Just run the above code and you'll see why.

$something = 0;
echo ('password123' === $something) ? 'true' : 'false';

Now, that's a little better.

share|improve this answer
1  
== isn't just a problem for differing types. It will sometimes give unexpected results even if both sides are a string. Try '1e3' == '1000' – Antimony Jun 21 '12 at 1:54
how does 0 == 'password123' ? – Andy Lobel Aug 10 '12 at 2:41
4  
@AndyLobel PHP coerces 'password123' to a number using it's odd loose comparison rules since the other operand is a number, that string, like most, coerces to the number 0, and PHP returns true for the comparison. – postfuturist Aug 10 '12 at 5:15
1  
A quick var_dump((int)'password123'); helped me fully understand why this happened...**embarrassed**...I really like the === operator – Carlton Nov 8 '12 at 11:49

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.

share|improve this answer
But you can just ===. – Roman Newaza Jan 25 at 1:08
1  
@Roman yes but a lot of PHP programmers don't know they have to do that. Hence the warning. – Antimony Jan 25 at 4:36
Not sure about the other people :-) – Roman Newaza Jan 25 at 5:15

Using == might be dangerous.

Note, that it would cast the variable to another data type if the two differs.

Examples:

  • echo (1 == '1') ? 'true' : 'false';
  • echo (1 == true) ? 'true' : 'false';

As you can see, these two are from different types, but the result is true, which might not be what your code will expect.

Using ===, however, is recommended as test shows that it's a bit faster than strcmp() and its case-insensitive alternative strcasecmp().

Quick googling yells this speed comparison: http://snipplr.com/view/758/

share|improve this answer
Sometimes it casts them to a different type even if they already have the same type. – Antimony Apr 25 at 5:24

Always remember, when comparing strings, you should use '===' operator (strict comparison) and NOT '==' operator (loose comparison)

share|improve this answer

Well..according to this php bug report , you can even get 0wned.

<?php 
    $pass = isset($_GET['pass']) ? $_GET['pass'] : '';
    // Query /?pass[]= will authorize user
    //strcmp and strcasecmp both are prone to this hack
    if ( strcasecmp( $pass, '123456' ) == 0 ){
      echo 'You successfully logged in.';
    }
 ?>

It gives you a warning , but still bypass the comparison.
You should be doing === as @postfuturist suggested.

share|improve this answer

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.

share|improve this answer
It will always return 0 if the strings are equal, though. +1 for being careful about caring about any other value than 0 though. – Prof. Falken Mar 26 at 10:05

You can use strcmp() if you wish to order/compare strings lexicographically. If you just wish to check for equality then == is just fine.

share|improve this answer
1  
Like in usort. In fact, it's pretty much made for sorting. – Charles Jul 26 '10 at 8:46
@Charles Thanks. Wikipedia made my eyes glaze over. – cbednarski Jul 26 '10 at 8:51
4  
The first part is right, but == is not fine for equality. – postfuturist Dec 13 '11 at 19:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.