Which is the most efficient way to determine if a key is present in an array, assuming the array has seenagape 8 years ago Which is the most efficient way to determine if a key is present in an array, assuming the array hasno NULL values? A.in_array(‘key’, array_keys($a)) B.isset($a[‘key’]) C.array_key_exists(‘key’, $a) D.None of the above ← Previous question Next question →