开发者

How to avoid undefined index

开发者 https://www.devze.com 2023-03-18 10:27 出处:网络
How can you easily avoid getting this error/notice in PHP? Notice: Undefin开发者_StackOverflow社区ed index: test in /var/www/page.php on line 21

How can you easily avoid getting this error/notice in PHP?

Notice: Undefin开发者_StackOverflow社区ed 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:

$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
}


Use if (isset($preset[$table]))


Or you can check first if key exists by using isset().

if ( isset($preset[$table]) )

Return true if exists, otherwise return false.

0

精彩评论

暂无评论...
验证码 换一张
取 消