mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
11 lines
No EOL
248 B
PHP
11 lines
No EOL
248 B
PHP
<?php
|
|
|
|
class DirectoryGraphIterator extends DirectoryTreeIterator
|
|
{
|
|
function __construct($path)
|
|
{
|
|
RecursiveIteratorIterator::__construct(new CachingRecursiveIterator(new ParentIterator(new RecursiveDirectoryIterator($path)), true), 1);
|
|
}
|
|
}
|
|
|
|
?>
|