Skip to content

Instantly share code, notes, and snippets.

@mathiasverraes
Last active August 29, 2015 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mathiasverraes/8688468 to your computer and use it in GitHub Desktop.
Save mathiasverraes/8688468 to your computer and use it in GitHub Desktop.
simple way to flatten an array
<?php
function flatten(array $array)
{
return call_user_func_array('array_merge', $array);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment