vote up 0 vote down star

Possible Duplicates:
php == vs === operator
How do the equality (==) and identity (===) comparison operators differ?

What does === mean in php?

I know that = is for assignment and == for comparing

But what is ===?

Been googling but I cant find it :/

flag
5  
stackoverflow.com/questions/80646/… – David Sep 1 at 20:06
1  
And also stackoverflow.com/questions/1117967/… – Dykam Sep 1 at 20:08
2  
The fail hurts us, precious... – Bears will eat you Sep 1 at 20:25

closed as exact duplicate by Ionut G. Stan, musicfreak, Paul Dixon, andri, Michael Petrotta Sep 1 at 20:08

4 Answers

vote up 1 vote down

It ensures that both the type and the value is the same. For example 0 == false is true, while 0 === false is false. There are several examples of where this is quite useful. One case would be when using strpos():

$str = "foobar";
if (strpos($str, "foo") == 0) {
    // this will occur if the string isn't actually 
    // found since strpos() returns false when that's the case.
}

if (strpos($str, "foo") === 0) {
    // this behaves correctly and is only true if the 
    // string actually starts with "foo"
}

The manual entry for strpos() actually points this out explicitly. The same is true for array_search() and numerous other functions.

link|flag
vote up 4 vote down

Always start with the language's docs:

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

Google is not good for searching what looks like punctuation or mathematical operators.

link|flag
vote up 2 vote down

It's strict equality. It's used for comparing not only the value but also the type:

Check this out:

http://www.programmerskit.com/the-difference-between-and/

link|flag
vote up 8 vote down

It compares both the value and the types rather than just the values.

$var1= “7″;
$var2 = 7;
// $var1 == $var2 returns true 
// $var1 === $var2 returns false
link|flag

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