Triple Equals Sign In Php
http://stackoverflow.com/questions/80646/how-do-the-equality-double-equals-and-identity-triple-equals-comparisSince PHP uses $ to declare variables (and not int, etc), one can run into issues with an if statement being unintentionally true.
For example, 0 == null.
The triple equals sign (===) allows you to prevent these cases by only returning true if the two inputs are not the same type.
So, 0 === null is not true. Also, 0 === "0" is not true either.