Please answer this simple SPAM challenge: min(six, six)? (Example: nine)
The most memory-efficient array_map_recursive(). <?php function 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