How can you easily avoid getting this error/notice in PHP?
Notice: Undefined index: test in /var/www/page.php on line 21
The code:
$table = 'test';
$preset = array();
method($preset[$table]);
The array $preset exists but not with the specified index
Check if it exists using
array_key_exists:Alternatively, you could use
isset: