to only access the current folder:
$max_depth = 0;
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
RecursiveIteratorIterator::setMaxDepth — Définit la profondeur maximale
Définit la profondeur maximale autorisée.
Cette fonction est actuellement non documentée ; seule la liste des arguments est disponible.
maxDepth
La profondeur maximale autorisée. -1
sera utilisé pour une profondeur infinie.
Aucune valeur n'est retournée.
Émet une Exception si maxDepth
est inférieur à -1
.
I didn't understand what to do with this statement:
RecursiveIteratorIterator::setMaxDepth ([ int $max_depth = -1 ] ) : void
So, after finding the answer, this is how you incorporate it (for anyone else who was stuck for a while like me!):
// define the depth of the tree to which you want to search
// where -1 = show all layers below the parent
// and 1 = show the first layer, etc, etc
$max_depth = -1;
// set the path to the directory
$this_directory
// do the search
$recursive = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($this_directory));
// now adjust the contents to your desired depth
$recursive->setMaxDepth($max_depth);