Skip to content

Instantly share code, notes, and snippets.

@uppfinnarjohnny
Created December 1, 2009 21:24
Show Gist options
  • Save uppfinnarjohnny/246665 to your computer and use it in GitHub Desktop.
Save uppfinnarjohnny/246665 to your computer and use it in GitHub Desktop.
array_flatten
<?php
function array_flatten(Array $array, Array $out = array()) {
foreach($array as $value)
is_array($value) ? $out = array_flatten($value, $out) : $out[] = $value;
return $out;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment