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.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
vendor /
composer /
pcre /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
PHPStan
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
MatchAllResult.php
901
B
-rwxrwxr-x
2024-11-12 16:29
MatchAllStrictGroupsResult.php
891
B
-rwxrwxr-x
2024-11-12 16:29
MatchAllWithOffsetsResult.php
1.15
KB
-rwxrwxr-x
2024-11-12 16:29
MatchResult.php
754
B
-rwxrwxr-x
2024-11-12 16:29
MatchStrictGroupsResult.php
756
B
-rwxrwxr-x
2024-11-12 16:29
MatchWithOffsetsResult.php
990
B
-rwxrwxr-x
2024-11-12 16:29
PcreException.php
1.34
KB
-rwxrwxr-x
2024-11-12 16:29
Preg.php
17.25
KB
-rwxrwxr-x
2024-11-12 16:29
Regex.php
7.19
KB
-rwxrwxr-x
2024-11-12 16:29
ReplaceResult.php
742
B
-rwxrwxr-x
2024-11-12 16:29
UnexpectedNullMatchException.php
511
B
-rwxrwxr-x
2024-11-12 16:29
Save
Rename
<?php /* * This file is part of composer/pcre. * * (c) Composer <https://github.com/composer> * * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace Composer\Pcre; final class MatchAllStrictGroupsResult { /** * An array of match group => list of matched strings * * @readonly * @var array<int|string, list<string>> */ public $matches; /** * @readonly * @var 0|positive-int */ public $count; /** * @readonly * @var bool */ public $matched; /** * @param 0|positive-int $count * @param array<list<string>> $matches */ public function __construct(int $count, array $matches) { $this->matches = $matches; $this->matched = (bool) $count; $this->count = $count; } }