Skip to content

Instantly share code, notes, and snippets.

@emersonthis
Created January 14, 2019 02:46
Show Gist options
  • Save emersonthis/4b105c301b886c7aa8aa458fa10b897b to your computer and use it in GitHub Desktop.
Save emersonthis/4b105c301b886c7aa8aa458fa10b897b to your computer and use it in GitHub Desktop.
Flatten array
<?php
function flatten_array($array) {
$flatArray = [];
foreach ($array as $item) {
if (is_array($item)) {
$flatArray = array_merge( $flatArray, flatten_array($item) );
} else {
$flatArray = array_merge($flatArray, $item);
}
}
return $flatArray;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment