Is it just me? Or am I doing something wrong?
<?php $arr = []; $arr['key'] = NULL; var_dump(isset($arr['key'])); //bool(false) var_dump(is_null($arr['key'])); //bool(true) var_dump(is_null($arr['any_key'])); //bool(true) How to check the existence of a key?