Any idea how to check if a key exists and if yes, then get the value of this key from an array in php.
E.g.
I have this array:
$things = array(
'AA' => 'American history',
'AB' => 'American cooking'
);
$key_to_check = 'AB';
Now, I need to check if $key_to_check exists and if it does, get a coresponding value which in this case will be American cooking
1 Answer