Hi
I have an array declared as
static $array = array(
'a0' => array(
'b1' => array(
'c0' => 5,
'c1' => 'hi',
),
'b2' => array(
'd0' => 5,
'd1' => 'hi',
), ),
'a2' => 10,
);
What I need to do is to loop over the array and extract a set of arrays such that these new arrays have an element removed, but leaving the original array in tact.
So the first array in the set would remove 'a0' and looks like
static $array = array(
'a2' => 10,
);
The second would remove [a0][b1] and looks like
static $array = array(
'a0' => array(
'b2' => array(
'd0' => 5,
'd1' => 'hi',
), ),
'a2' => 10,
);
etc
Please can anyone help?
Thanks