Skip to content

Instantly share code, notes, and snippets.

@srsad
Created June 15, 2018 10:43
Show Gist options
  • Save srsad/fd7954548d08028c61117563483a2178 to your computer and use it in GitHub Desktop.
Save srsad/fd7954548d08028c61117563483a2178 to your computer and use it in GitHub Desktop.
<?php
$arrayTest = [1,2,[3,[4,5],6,7],8,9];
$result = [];
array_walk_recursive($arrayTest, function ($item, $key) use (&$result) {
$result[] = $item;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment