Skip to content

Instantly share code, notes, and snippets.

@webinista
Created April 12, 2019 20:15
Show Gist options
  • Save webinista/c913390a23e0561ebf77f7e3c2d2b72f to your computer and use it in GitHub Desktop.
Save webinista/c913390a23e0561ebf77f7e3c2d2b72f to your computer and use it in GitHub Desktop.
Flatten a two-dimensional PHP array
<?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