Skip to content

Instantly share code, notes, and snippets.

@muhamed-didovic
Forked from mathiasverraes/flatten.php
Last active August 29, 2015 14:11
Show Gist options
  • Select an option

  • Save muhamed-didovic/28804d90bdea99fd64cc to your computer and use it in GitHub Desktop.

Select an option

Save muhamed-didovic/28804d90bdea99fd64cc to your computer and use it in GitHub Desktop.
<?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