Skip to content

Instantly share code, notes, and snippets.

@dellow
Last active August 29, 2015 14:18
Show Gist options
  • Save dellow/d0f89977a1d6c9cd6319 to your computer and use it in GitHub Desktop.
Save dellow/d0f89977a1d6c9cd6319 to your computer and use it in GitHub Desktop.
Flattens any array.
/**
* array_flatten
* Flattens any array.
*
* @since 1.0.0
* @version 1.0.0
**/
function array_flatten($array){
$return = array();
array_walk_recursive($array, function($a) use (&$return) { $return[] = $a; });
return $return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment