Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. function array_flatten(array $array)
  3. {
  4. return iterator_to_array(new RecursiveIteratorIterator(new RecursiveArrayIterator($array)), false);
  5. }
  6.  
  7. /*
  8. // Пример:
  9. $a = [1, 2, [3, 4, 5, [6, 7], 8, 9], 10, 11];
  10. print_r(array_flatten($a));
  11. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement