Skip to content

Instantly share code, notes, and snippets.

View Leotomas's full-sized avatar

Leo TOMAS Leotomas

  • Polyconseil
  • Paris, France
View GitHub Profile
@Leotomas
Leotomas / flatten.php
Created November 12, 2015 22:55 — forked from kohnmd/flatten.php
Function to recursively flatten multidimensional PHP array.
<?php
// Requires PHP 5.3+
// Found here: http://stackoverflow.com/a/1320156
function flatten_array(array $array) {
$flattened_array = array();
array_walk_recursive($array, function($a) use (&$flattened_array) { $flattened_array[] = $a; });
return $flattened_array;
}