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 ;)
is_arrayfunction that might be helpful. php.net/manual/en/function.is-array.php – Mikel Feb 9 '11 at 11:06