As per the php.net site documentation, is_null() function finds whether provided variable is NULL.
Actually, is_null() function works similar like...
For further actions, you may consider blocking this person and/or reporting abuse
A useful addition is
empty()which basically can be treated asisset(since it covers it) but for moments where you explictly don't seek to know whether the actual value is set.empty()also works on object members, whilstisset()does not.