In PHP, what is an underlying reason of placing either boolean or null before identical comparison operator?
false === $value; null === $value;
It's a convention to avoid the mistake of accidentally assigning a variable.
$value = false;
instead of
$value === false;