Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
481 views
Welcome To Ask or Share your Answers For Others

1 Answer

Check if it exists using array_key_exists:

$table = 'test';
$preset = array();
if(array_key_exists($table, $preset)) {
    method($preset[$table]);
}else{
    // $table doesn't exist in $preset
}

Alternatively, you could use isset:

$table = 'test';
$preset = array();
if(isset($preset[$table])) {
    method($preset[$table]);
}else{
    // $table doesn't exist in $preset
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...