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