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 /
Composer /
Pcre /
Delete
Unzip
Name
Size
Permission
Date
Action
MatchAllResult.php
902
B
-rw-r--r--
2022-11-17 09:50
MatchAllStrictGroupsResult.php
892
B
-rw-r--r--
2022-11-17 09:50
MatchAllWithOffsetsResult.php
1.15
KB
-rw-r--r--
2022-11-17 09:50
MatchResult.php
754
B
-rw-r--r--
2022-11-17 09:50
MatchStrictGroupsResult.php
756
B
-rw-r--r--
2022-11-17 09:50
MatchWithOffsetsResult.php
990
B
-rw-r--r--
2022-11-17 09:50
PcreException.php
1.48
KB
-rw-r--r--
2022-11-17 09:50
Preg.php
17.07
KB
-rw-r--r--
2022-11-17 09:50
Regex.php
6.74
KB
-rw-r--r--
2022-11-17 09:50
ReplaceResult.php
742
B
-rw-r--r--
2022-11-17 09:50
UnexpectedNullMatchException.php
511
B
-rw-r--r--
2022-11-17 09:50
autoload.php
1.34
KB
-rw-r--r--
2024-05-05 09:08
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 MatchAllResult { /** * An array of match group => list of matched strings * * @readonly * @var array<int|string, list<string|null>> */ public $matches; /** * @readonly * @var 0|positive-int */ public $count; /** * @readonly * @var bool */ public $matched; /** * @param 0|positive-int $count * @param array<int|string, array<string|null>> $matches */ public function __construct(int $count, array $matches) { $this->matches = $matches; $this->matched = (bool) $count; $this->count = $count; } }