RecursiveIteratorIterator::setMaxDepth

(PHP 5 >= 5.1.0, PHP 7)

RecursiveIteratorIterator::setMaxDepthУстановка максимальной глубины вложенности

Описание

public void RecursiveIteratorIterator::setMaxDepth ([ string $max_depth = -1 ] )

Задает максимальную глубину вложенности элементов.

Внимание

К настоящему времени эта функция еще не была документирована; для ознакомления доступен только список аргументов.

Список параметров

max_depth

Максимально допустимая глубина вложенности. -1 снимает ограничение на глубину рекурсии.

Возвращаемые значения

Эта функция не возвращает значения после выполнения.

Ошибки

Выбрасывает исключение Exception, если аргумент max_depth меньше -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);
2020-02-05 09:56:27
http://php5.kiev.ua/manual/ru/recursiveiteratoriterator.setmaxdepth.html
Автор:
to only access the current folder:
$max_depth = 0;
2020-02-15 14:53:35
http://php5.kiev.ua/manual/ru/recursiveiteratoriterator.setmaxdepth.html

    Поддержать сайт на родительском проекте КГБ