Created
April 12, 2019 20:15
-
-
Save webinista/c913390a23e0561ebf77f7e3c2d2b72f to your computer and use it in GitHub Desktop.
Flatten a two-dimensional 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 | |
function flatten2d($multi_dimensional_array) { | |
$flattened = []; | |
$flatten = function($value, $index) { | |
global $flattened; | |
array_push($flattened, $value); | |
}; | |
array_walk_recursive($multi_dimensional_array, $flatten); | |
return $flattened; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment