Hello!
I have a multi dimensional array in PHP.
$f = array('one' => array(*doesntmatter*), two => array());
When I want to use it, I only want one of the arrays. (one or two or three etc) So I want to slice it into (in this case) two seperate arrays, like this:
$one = array(**); $two = array(**);
Can I solve this with a default function, or I have to write it by myself?