Last active
September 20, 2021 12:48
-
-
Save kohnmd/11197713 to your computer and use it in GitHub Desktop.
Function to recursively flatten multidimensional PHP array.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Requires PHP 5.3+ | |
// Found here: http://stackoverflow.com/a/1320156 | |
function flatten_array(array $array) { | |
$flattened_array = array(); | |
array_walk_recursive($array, function($a) use (&$flattened_array) { $flattened_array[] = $a; }); | |
return $flattened_array; | |
} |
@Zenko:
If you pass arguments of a function (using func_get_args() which returns an array) to the function you run into Maxium memory exceeded error. How to fix please.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@zdenko:
You should include type hinting to avoid possible type errors. Slightly modified: