Assume I have an array $arr. It's possible that it has an element with a key named 'music' ($arr['music']), and I want to test whether that value equals "classical":
if($arr['music'] === 'classical'){
//do something cool
}
However, it's possible that $arr does not have a value with the key 'music'. In order to avoid a PHP error, I therefore do the following:
if($arr['music']){
if($arr['music'] === 'classical'){
//do something cool
}
}
This seems totally ridiculous. In MY opinion, if $arr['music'] doesn't exist, then it DEFINITELY doesn't equal 'classical'. Is there a way to avoid first testing whether a key exists before testing it's value?
0,'0',''andnull. Comparing any of those to a non-existent variable will all evaluate to true, which may NOT be what you wanted. – Marc B May 19 '11 at 21:17