Skip to content

Instantly share code, notes, and snippets.

@zhukovsergei
Created February 24, 2016 13:04
Show Gist options
  • Save zhukovsergei/54376c995304e0585249 to your computer and use it in GitHub Desktop.
Save zhukovsergei/54376c995304e0585249 to your computer and use it in GitHub Desktop.
Получаем все вложенные директории без рекурсии
<?php
$iterator = new RecursiveIteratorIterator(
new RecursiveDirectoryIterator('/home/nepster/www/test.ru'),
RecursiveIteratorIterator::SELF_FIRST);
foreach($iterator as $file) {
if($file->isDir()) {
echo $file->getRealpath(), PHP_EOL;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment