Why is === faster than == in PHP?

link|improve this question

47% accept rate
16  
It is faster, but is it significantly faster? – Piskvor Mar 8 '10 at 13:17
7  
Please don't read about what's faster in php. Read about how to get interesting data in single SQL query without abusing JOINs. – Kamil Szot Mar 10 '10 at 3:20
4  
To whom it might be interested in the same subject === vs ==, but in JAVASCRIPT, can read here: stackoverflow.com/questions/359494/… – Marco Demaio Dec 31 '10 at 12:35
feedback

8 Answers

up vote 63 down vote accepted

Because the equality operator == coerces, or converts the data type temporarily to see if it's equal to the other operand whereas === ( identity operator ) doesn't need to do any converting whatsoever and thus less work is done, making it faster.

link|improve this answer
I think your opinion is contrary with the what PHP Manual says. They say $a == $b is TRUE if $a is equal to $b, where $a === $b is TRUE if $a is equal to $b, and they are of the same type. – Bakhtiyor Jun 17 '10 at 8:58
19  
How is it contrary, then? – meder Jun 17 '10 at 14:10
2  
I believe it's actually that the 2 operands point to the same area of memory for complex types but meder's answer encompasses that – Basic Aug 24 '10 at 19:21
It makes sense (as it is in JS), but it would be nice if someone adds also a reference to some real simple performance tests. – Marco Demaio Dec 31 '10 at 12:37
feedback

First, === checks to see if the two arguments are the same type - so the number 1 and the string '1' fails on the type check before any comparisons are actually carried out. On the other hand, == doesn't check the type first and goes ahead and converts both arguments to the same type and then does the comparison.

Therefore, === is quicker at checking a fail condition

link|improve this answer
2  
I'd guess that == also checks the type first to see if any type conversion needs to be done. The fact that === doesn't do any conversion in the following step is what makes it faster. – deceze Jul 26 '10 at 9:37
feedback

=== does not perform typecasting, so 0 == '0' evaluates to true, but 0 === '0' - to false.

link|improve this answer
1  
+1 for mentioning the two operators may evaluate differently. – Ioan Mar 8 '10 at 13:26
feedback

I don't really know if it's significantly faster, but === in most languages is a direct type comparison, while == will try to do type coercion if necessary/possible to gain a match.

link|improve this answer
1  
"=== in most languages"? Name two other langauges that know "===" - bad news for you. I have never seen "===" before in any other languagae. – TomTom Mar 8 '10 at 13:21
6  
Javascript has the === operator. – Frank Shearar Mar 8 '10 at 13:24
8  
@tomtom: webreference.com/js/column26/stricteq.html for javascript, phrogz.net/programmingruby/language.html#table_18.4 for ruby, etc... Try not to be an ass, k? – Chris Mar 8 '10 at 13:32
1  
ruby has ===. It has been too long for me to remember if it does the same thing. – KitsuneYMG Mar 8 '10 at 13:33
1  
Also, livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/… for actionscript. Basically, google "strict equality". – Chris Mar 8 '10 at 13:35
show 2 more comments
feedback

The == incurs a larger overhead of type conversion before comparison. === first checks the type, then proceeds without having to do any type conversion.

link|improve this answer
feedback

Because === doesn't need to coerce the operands to be of the same type before comparing them.

I doubt the difference in speed is very much though. Under normal circumstances you should use whichever operator makes more sense.

link|improve this answer
feedback

In conclusion === is faster because don't converts the data type to see if two variables have same value, but when you need to see if two variables have same value you will use == if doesen't mather what type are variables, or === if is important also the type of variables.

link|improve this answer
feedback

identity operator is faster

link|improve this answer
Why a -2 was given here? Actually is saying the same of other people. IDENTITY whis is === is supposed to be faster in comparisons than EQUALITY == – Marco Demaio Dec 31 '10 at 12:32
4  
The question asked why Identity is faster than Equality. This answer didn't add any information. – Alex Brault Mar 30 '11 at 3:02
feedback

Your Answer

 
or
required, but never shown

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