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; class PcreException extends \RuntimeException { /** * @param string $function * @param string|string[] $pattern * @return self */ public static function fromFunction($function, $pattern) { $code = preg_last_error(); if (is_array($pattern)) { $pattern = implode(', ', $pattern); } return new PcreException($function.'(): failed executing "'.$pattern.'": '.self::pcreLastErrorMessage($code), $code); } /** * @param int $code * @return string */ private static function pcreLastErrorMessage($code) { if (function_exists('preg_last_error_msg')) { return preg_last_error_msg(); } $constants = get_defined_constants(true); if (!isset($constants['pcre']) || !is_array($constants['pcre'])) { return 'UNDEFINED_ERROR'; } foreach ($constants['pcre'] as $const => $val) { if ($val === $code && substr($const, -6) === '_ERROR') { return $const; } } return 'UNDEFINED_ERROR'; } }