Why is === faster than == in PHP?
===
==
The == incurs a larger overhead of type conversion before comparison. === first checks the type, then proceeds without having to do any type conversion.