I have this array (which comes from a specific function : list and filter files of a directory on extension) :

Array
(
    [Dir_test] = Array
        (
            [dir_client] = Array
                (
                    [0] = index.html
                )

            [0] = index.html
        )
)

And I would like to get something like. Note : The directory could have way more subdirs.

Array
(
    [0] = Dir_test/dir_client/index.html
    [1] = Dir_test/index.html
)

Thx for your help ;)

link|improve this question

PHP has an is_array function that might be helpful. php.net/manual/en/function.is-array.php – Mikel Feb 9 '11 at 11:06
feedback

3 Answers

up vote 1 down vote accepted

Assuming your input data looks like this:

$arr = array(
    'Dir_test' => array (
        'dir_client' => array (
            0 => 'index.html'
        ),

        0 => 'index.html'
    )
);

The easiest solution is a recursive one, something like:

function add_dir($dir) {
    global $dirs;

    $dirs[] = $dir;
}

// pathsofar should always end in '/'
function process_dir($dirarray, $pathsofar) {
    foreach ($dirarray as $key => $value) {
        if (is_array($value)) {
            process_dir($value, $pathsofar . $key . '/');
        } else {
            add_dir($pathsofar . $value);
        }
    }
}

process_dir($arr, '');

print_r($dirs);

Running it:

$ php arr2.php
Array
(
    [0] => Dir_test/dir_client/index.html
    [1] => Dir_test/index.html
)
link|improve this answer
Perfect, thx ;) – Flyingbeaver Feb 9 '11 at 12:42
feedback

You can use array_walk_recursive function

link|improve this answer
feedback

Write a recursive function that takes an array and a string as arguments and returns and calls itself on every key of the array that holds itself an array.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.