Ver originalmifuncion($a); function mifuncion($v){ foreach($v as $n) { if(is_array($n)) { mifuncion($n); }else { print $v; } }}