i know my first element in my array[zero index] is NULL and i want to check that in my {if} condition. but i have a notice here. what can i do to resolve the notice? my simple code:
$arr = [];
$arr[1] = '1';
if($arr[0] === NULL)
echo 'if';
else
echo 'else';