You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
637 B
PHP

<?php
function array_flat($my_array)
{
$fa = array();
$l = 0;
foreach($my_array as $k => $v )
{
if( !is_array( $v ) )
{
$fa[ ]= $v;
continue;
}
$l++;
$fa= array_flat( $v, $fa, $l );
$l--;
}
if( $l == 0 ) $fa = array_values( array_unique( $fa ) );
return $fa;
}
$tmp = array( 'a' => array( -1,-2, 0, 2, 3 ), 'b' => array( 'c' => array( -1, 0, 2, 0, 3 ) ) );
print_r(array_flat($tmp));
?>