evitar erro de índice indefinido

$array = [];
$foo
= $array['nonExistingKey']; // throw E_NOTICE: Undefined index
if (!empty($foo))
{
echo $foo
;
}

use ao invés

$array = [];
$foo
= &$array['nonExistingKey'];
if (!empty($foo))
{
echo $foo
;
}