We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
changing is_null($var) to (null === $var) is cool, but it does it wrong combining with exclamation mark
is_null($var)
(null === $var)
if (!is_null($var)) => if (!null === $var)
if (!is_null($var))
if (!null === $var)