Why is === faster than == in PHP?
===
==
=== does not perform typecasting, so 0 == '0' evaluates to true, but 0 === '0' - to false.
0 == '0'
true
0 === '0'
false