Let's say I have an array like this:
$myArray = array(
'a' => 'alpha',
'b' => array(
'Z' => 'zulu' )
);
I'd like to search for the key 'Z' and replace its value.
I've tried iterators, foreach loops, etc but no luck.
* Amended syntax.