PHP Comparison:
The == vs ===
== will check the value of the variable
=== will check the type of the variable as well as the value
'' == NULL would return true
0 == NULL would return true
false == null would return true
where as
'' === NULL would return false
0 === NULL would return false
false === NULL would return false