Sha256: ceb2921c9589620344f363ceead75e84f27e2f620bb3cedf5007596bb07b9127
Contents?: true
Size: 207 Bytes
Versions: 148
Compression:
Stored size: 207 Bytes
Contents
<?php function flatten($array = []) { $return = array(); array_walk_recursive($array, function ($x) use (&$return) { return !is_null($x) ? $return[] = $x : []; }); return $return; }
Version data entries
148 entries across 148 versions & 1 rubygems