array_walk_recursive

Example

 bool array_walk_recursive ( array &$input , callback $funcname [, mixed $userdata ] ) 

Description

Applies the user-defined function funcname to each element of the input array. This function will recurse into deeper arrays.

Return Values

Returns TRUE on success or FALSE on failure.