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.

Can someone explain to me the difference between =, ==, and ===? I think using one equal sign is to declare a variable while two equal signs is for a comparison condition and lastly three equal signs is for comparing values of declared variables.

share|improve this question
check out the example ... I have posted it would clarify more things .. – InfantPro'Aravind' Jan 14 '10 at 10:55

7 Answers

up vote 38 down vote accepted

You have = the assignment operator, == the 'equal' comparison operator and === the 'identical' comparison operator.

$a = $b     Assign      Sets $a to be equal to $b.
$a == $b    Equal       TRUE if $a is equal to $b.
$a === $b   Identical   TRUE if $a is equal to $b, and they are of the same type. (introduced in PHP 4) 

For more info on the need for == and ===, and situations to use each, look at the docs.

share|improve this answer
  • = is the assignment operator
  • == is the comparison operator (checks if two variables have equal values)
  • === is the identical comparison operator (checks if two variables have equal values and are of the same type).
share|improve this answer

Take a look at the manual: http://www.php.net/manual/en/language.operators.comparison.php

share|improve this answer

= assignment operator

== checks if two variables have the same value

=== checks if two variables have the same value AND if their types are the same

share|improve this answer

Everyone else have clarified .. I just want to add an example to clarify it more ..

<?php
$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);

// Note our use of ===.  Simply == would not work as expected
// because the position of 'a' was the 0th (first) character.
if ($pos === false) {
    echo "The string '$findme' was not found in the string '$mystring'";
} else {
    echo "The string '$findme' was found in the string '$mystring'";
    echo " and exists at position $pos";
}
?> 
share|improve this answer

Maybe you can better comprehend the difference between == and === with an example that involves automatic casting:

echo '"5 is not a number" == 5'."\n";
if("5 is not a number" == 5) {
  echo "maybe there is something wrong here\n";
} else {
  echo " The integer and the string are different\n";
}
echo '"5 is not a number" === 5'."\n";
if("5 is not a number" === 5) {
  echo "maybe there is something wrong here\n";
} else {
  echo " The integer and the string are different\n";
}
share|improve this answer
Perfect example :) – gnarf Jan 14 '10 at 10:58
2  
I do not understand the purpose of this example. – Koray Tugay Feb 19 at 15:51
@KorayTugay The purpose of the example is to show you that two expressions, compared with the two operators, will lead to opposite results. There is not a good and a bad operator though, you have to choose one or another based on your needs. – Eineki Apr 16 at 22:35

You are right that = is the assignment operator. The other two are comparison operators that you can read more about here.

share|improve this answer

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.