RosettaCodeData/Task/Flatten-a-list/PHP/flatten-a-list-1.php

5 lines
208 B
PHP
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
/* Note: This code is only for PHP 4.
It won't work on PHP 5 due to the change in behavior of array_merge(). */
while (array_filter($lst, 'is_array'))
$lst = call_user_func_array('array_merge', $lst);