RecursiveIteratorIterator::getDepth

(PHP 5)

RecursiveIteratorIterator::getDepth — Get the current depth of the recursive iteration

Описание

int RecursiveIteratorIterator::getDepth ( void )
Внимание

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

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

This function has no parameters.

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

The current depth of the recursive iteration.

Коментарии

Example to only return directories that are a specified depth in a tree:

<?php
function directory_mapper($path)
{
   
$maxDepth 3;
   
$minDepth 3;
   
$iterator = new RecursiveIteratorIterator(
        new 
RecursiveDirectoryIterator($pathRecursiveDirectoryIterator::SKIP_DOTS),
       
RecursiveIteratorIterator::SELF_FIRST,
       
RecursiveIteratorIterator::CATCH_GET_CHILD// Ignore "Permission denied"
   
);
   
$iterator->setMaxDepth($maxDepth);

   
$paths = array($path);
    foreach (
$iterator as $path => $dir) {
        if (
$iterator->getDepth() >= $minDepth) {
            if (
$dir->isDir()) {
               
$paths[] = $path;
            }
        }

    }
   
array_shift($paths);
    return 
$paths;
}
?>
2018-05-08 23:58:24
http://php5.kiev.ua/manual/ru/recursiveiteratoriterator.getdepth.html

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