Please answer this simple SPAM challenge: min(five, seven)? (Example: nine)
The most memory-efficient array_map_recursive().<?phpfunction array_map_recursive(callable $func, array $arr) { array_walk_recursive($arr, function(&$v) use ($func) { $v = $func($v); }); return $arr;}?>
<< Back to user notes page