Why is === faster than == in PHP?
| ||||
|
feedback
|
|
Because the equality operator | |||||||||||||
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 | |||||
feedback
|
|
| |||||
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. | |||||||||||||||||||||
feedback
|
|
The == incurs a larger overhead of type conversion before comparison. === first checks the type, then proceeds without having to do any type conversion. | |||
|
feedback
|
|
Because I doubt the difference in speed is very much though. Under normal circumstances you should use whichever operator makes more sense. | ||||
|
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. | |||
|
feedback
|
|
identity operator is faster | |||||||
feedback
|
=== vs ==, but in JAVASCRIPT, can read here: stackoverflow.com/questions/359494/… – Marco Demaio Dec 31 '10 at 12:35