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; 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(); } // older php versions did not set the code properly in all cases if (PHP_VERSION_ID < 70201 && $code === 0) { return 'UNDEFINED_ERROR'; } $constants = get_defined_constants(true); if (!isset($constants['pcre'])) { return 'UNDEFINED_ERROR'; } foreach ($constants['pcre'] as $const => $val) { if ($val === $code && substr($const, -6) === '_ERROR') { return $const; } } return 'UNDEFINED_ERROR'; } }