Start your All-Access Pass to unlock this challenge
What's the difference between array_key_exists() and isset()?
array_key_exists()
isset()
There's not much difference: both do basically the same thing.
array_key_exists() returns false if a key does not exist on an array. But isset() returns a warning in this case.
array_key_exists() can be used on all arrays, but isset() can only be used with associative arrays