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; /** * FilecontentFilterIterator filters files by their contents using patterns (regexps or strings). * * @author Fabien Potencier <fabien@symfony.com> * @author Włodzimierz Gajda <gajdaw@gajdaw.pl> * * @extends MultiplePcreFilterIterator<string, \SplFileInfo> */ class FilecontentFilterIterator extends MultiplePcreFilterIterator { /** * Filters the iterator values. * * @return bool */ #[\ReturnTypeWillChange] public function accept() { if (!$this->matchRegexps && !$this->noMatchRegexps) { return true; } $fileinfo = $this->current(); if ($fileinfo->isDir() || !$fileinfo->isReadable()) { return false; } $content = $fileinfo->getContents(); if (!$content) { return false; } return $this->isAccepted($content); } /** * Converts string to regexp if necessary. * * @param string $str Pattern: string or regexp * * @return string */ protected function toRegex(string $str) { return $this->isRegex($str) ? $str : '/'.preg_quote($str, '/').'/'; } }