Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
Symfony /
Component /
Finder /
Iterator /
Delete
Unzip
Name
Size
Permission
Date
Action
CustomFilterIterator.php
1.53
KB
-rw-r--r--
2026-05-27 08:15
DateRangeFilterIterator.php
1.41
KB
-rw-r--r--
2026-05-27 08:15
DepthRangeFilterIterator.php
1.39
KB
-rw-r--r--
2026-05-27 08:15
ExcludeDirectoryFilterIterator.php
2.61
KB
-rw-r--r--
2026-05-27 08:15
FileTypeFilterIterator.php
1.36
KB
-rw-r--r--
2026-05-27 08:15
FilecontentFilterIterator.php
1.41
KB
-rw-r--r--
2026-05-27 08:15
FilenameFilterIterator.php
1.15
KB
-rw-r--r--
2026-05-27 08:15
LazyIterator.php
672
B
-rw-r--r--
2026-05-27 08:15
MultiplePcreFilterIterator.php
3.17
KB
-rw-r--r--
2026-05-27 08:15
PathFilterIterator.php
1.42
KB
-rw-r--r--
2026-05-27 08:15
RecursiveDirectoryIterator.php
4.31
KB
-rw-r--r--
2026-05-27 08:15
SizeRangeFilterIterator.php
1.37
KB
-rw-r--r--
2026-05-27 08:15
SortableIterator.php
3.82
KB
-rw-r--r--
2026-05-27 08:15
VcsIgnoredFilterIterator.php
3.91
KB
-rw-r--r--
2026-05-27 08:15
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Finder\Iterator; /** * DepthRangeFilterIterator limits the directory depth. * * @author Fabien Potencier <fabien@symfony.com> * * @template-covariant TKey * @template-covariant TValue * * @extends \FilterIterator<TKey, TValue> */ class DepthRangeFilterIterator extends \FilterIterator { private $minDepth = 0; /** * @param \RecursiveIteratorIterator<\RecursiveIterator<TKey, TValue>> $iterator The Iterator to filter * @param int $minDepth The min depth * @param int $maxDepth The max depth */ public function __construct(\RecursiveIteratorIterator $iterator, int $minDepth = 0, int $maxDepth = \PHP_INT_MAX) { $this->minDepth = $minDepth; $iterator->setMaxDepth(\PHP_INT_MAX === $maxDepth ? -1 : $maxDepth); parent::__construct($iterator); } /** * Filters the iterator values. * * @return bool */ #[\ReturnTypeWillChange] public function accept() { return $this->getInnerIterator()->getDepth() >= $this->minDepth; } }