RosettaCodeData/Task/Flatten-a-list/PHP/flatten-a-list-1.php
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

4 lines
208 B
PHP

/* 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);