Let's say I have a variable that will always be a string.
Now take the code below:
if($myVar === "teststring")
Note: $myVar will always be a string, so my questions is
Which is quicker/best, using === (indentity) or the == (equality)?
|
Let's say I have a variable that will always be a string. Now take the code below:
Note: Which is quicker/best, using
| ||||
|
feedback
|
|
Testing for identity is always faster, because PHP does not have to Type Juggle to evaluate the comparison. However, I'd say the speed difference is in the realms of nanoseconds and totally neglectable. Related reading: | |||||||||
feedback
|
|
| |||
|
feedback
|
|
In general when I code, I use == over ===, however, using the identity is more precise, and also, slightly faster (difference is minimal). The difference between the two is likely irrelevant for whatever you need. | |||||||
feedback
|
==, reversing the condition ("teststring" == $myVar) helps catching possible typos (if you miss one of the two equal signs, you're going to change the value of$myVarand have an always-true if condition!). – MartinodF Nov 15 '11 at 3:52