H
H
Hello_Stalin2014-06-18 09:24:15
PHP
Hello_Stalin, 2014-06-18 09:24:15

How to display all folders and subfolders of unlimited nesting in PHP?

How to display all folders and subfolders of unlimited nesting in PHP?
Example:

Папка
-Папка1
--Папка2
Папка3

Preferably with SPL

Answer the question

In order to leave comments, you need to log in

3 answer(s)
M
Mikhail Alekseev, 2014-06-18
@Hello_Stalin

www.php.net/manual/en/class.recursivedirectoryiter...
stackoverflow.com/questions/20045622/php-recursive...

M
mumrum, 2014-06-18
@mumrum

glob

R
Rpsl, 2014-06-18
@Rpsl

exec("find /etc -type d", $out); 
print_r( $out );

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question