Skip to content

Instantly share code, notes, and snippets.

@ravishakya
Last active January 30, 2021 14:48
Show Gist options
  • Save ravishakya/aec83c56b54ae96da8bdfb2b28c4073a to your computer and use it in GitHub Desktop.
Save ravishakya/aec83c56b54ae96da8bdfb2b28c4073a to your computer and use it in GitHub Desktop.
array_map for multidimensional array
function multidimentional_array_map( $function, $arr ){
$result = array();
foreach ($arr as $key => $val){
$result[$key] = (is_array($val) ? multidimentional_array_map($function, $val) : $function($val));
}
return $result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment