From professional translators, enterprises, web pages and freely available translation repositories.
?php $a = array ('test '= 1, 'hallo' = null); var_dump (isset ($a['test'])); / / true var_dump (isset ($a['foo'])); / / false var_dump (isset ($a['hallo'])); / / false / / de key 'hallo 'is gelijk aan null, dus geeft isset() false terug. / / als je ook naar null waarden in arrays wil kijken, kan je dit gebruiken: var_dump (array_key_exists('hello', $a)); / / true?
?php $a = array ('test' = 1, 'hello' = null); var_dump( isset ($a['test'])); // true var_dump( isset ($a['foo'])); // false var_dump( isset ($a['hello'])); // false // the key 'hello' equals null so is considered unset // if you want to check for null key values then try: var_dump( array_key_exists('hello', $a)); // true?