back to devpro   download
function array_flat($arr){
    // devpro.it
    $result = array();
    foreach($arr as $value){
        if(!is_array($value))
            $result[]   = $value;
        else
            array_splice($result, count($result), 0, array_flat($value));
    }
    return  $result;
}
back to devpro   download
Creative Commons License