|null */ private ?array $_funcCallConfig = null; /** @var array Cache for auto-detected arg reflection info */ private array $_autoArgTypes = []; // ========================================================================= // Config // ========================================================================= private function getFuncCallConfig(): array { if ($this->_funcCallConfig !== null) { return $this->_funcCallConfig; } return $this->_funcCallConfig = $this->buildFuncCallConfig(); } private function buildFuncCallConfig(): array { $simple = [ 'method_exists', 'property_exists', 'number_format', 'implode', 'array_key_first', 'array_key_last', 'array_values', 'version_compare', 'gettype', 'is_array', 'is_string', 'is_object', 'is_resource', 'is_scalar', 'is_numeric', 'is_countable', 'is_iterable', 'array_is_list', 'is_dir', 'is_file', 'file_exists', 'realpath', 'time', 'in_array', 'array_search', 'date', 'strtotime', 'md5', 'sha1', 'hash', 'print_r', 'base64_encode', 'base64_decode', 'urlencode', 'urldecode', 'rawurlencode', 'rawurldecode', 'json_encode', 'json_decode', 'serialize', 'unserialize', 'random_int', 'random_bytes', 'mt_rand', 'rand', 'strstr', 'strrpos', 'is_a', 'is_subclass_of', 'reset', 'end', 'uniqid', 'dirname', 'basename', // Math: trig, hyperbolic, exp/log, misc 'sin', 'cos', 'tan', 'asin', 'acos', 'atan', 'atan2', 'sinh', 'cosh', 'tanh', 'asinh', 'acosh', 'atanh', 'pi', 'exp', 'expm1', 'log', 'log10', 'log1p', 'hypot', 'deg2rad', 'rad2deg', 'fmod', 'fdiv', 'fpow', 'intdiv', // Math: is_* checks 'is_finite', 'is_infinite', 'is_nan', // Math: base conversion 'decbin', 'decoct', 'dechex', 'bindec', 'hexdec', 'octdec', 'base_convert', ]; $extra = [ // Aliases (PHP function name → C++ target name) 'join' => 'implode', 'stristr' => 'stristr', 'strlen' => ['constFold' => self::FOLD_STRING_LEN], 'ord' => [], 'ucfirst' => [], 'lcfirst' => [], 'strtolower' => ['constFold' => self::FOLD_STRING_CASE], 'strtoupper' => ['constFold' => self::FOLD_STRING_CASE], 'crc32' => [], 'chr' => [], 'strcmp' => ['constFold' => self::FOLD_CMP2], 'strcasecmp' => ['constFold' => self::FOLD_CMP2], 'str_starts_with' => [], 'str_ends_with' => [], 'str_contains' => [], 'strncmp' => ['constFold' => self::FOLD_CMP3], 'strncasecmp' => ['constFold' => self::FOLD_CMP3], 'explode' => [], 'strpos' => [], 'stripos' => [], 'substr' => [], 'str_repeat' => [], 'array_fill' => [], // Variadic 'array_merge' => ['variadic' => true], // Compile-time fold with defaults 'class_exists' => ['constFold' => self::FOLD_KNOWN_CLASS, 'defaults' => [1 => 'true']], 'interface_exists' => ['defaults' => [1 => 'true']], 'trait_exists' => ['defaults' => [1 => 'true']], 'enum_exists' => ['defaults' => [1 => 'true']], 'defined' => ['constFold' => self::FOLD_KNOWN_CONSTANT], // Big* dispatch 'abs' => ['bigDispatch' => [ self::TYPE_BIGINT => 'php::BigInt::abs', self::TYPE_BIGFLOAT => 'php::BigFloat::abs', self::TYPE_DECIMAL => 'php::Decimal::abs', 'fallback' => 'php::std::abs', ]], 'pow' => ['bigDispatch' => [ self::TYPE_BIGINT => 'php::BigInt::pow', self::TYPE_DECIMAL => 'php::Decimal::pow', 'fallback' => 'php::std::pow', ]], 'sqrt' => ['bigDispatch' => [ self::TYPE_BIGINT => 'php::BigInt::sqrt', self::TYPE_DECIMAL => 'php::Decimal::sqrt', self::TYPE_BIGFLOAT => 'php::BigFloat::sqrt', 'fallback' => 'php::std::sqrt', ]], 'floor' => ['bigDispatch' => [ self::TYPE_DECIMAL => 'php::Decimal::floor', 'fallback' => 'php::std::floor', ]], 'ceil' => ['bigDispatch' => [ self::TYPE_DECIMAL => 'php::Decimal::ceil', 'fallback' => 'php::std::ceil', ]], // Type conversions 'strval' => ['conversion' => self::ARG_TYPE_STR], 'intval' => ['conversion' => self::ARG_TYPE_INT], 'floatval' => ['conversion' => self::ARG_TYPE_FLOAT], 'boolval' => ['conversion' => self::ARG_TYPE_BOOL], // SSA compile-time type checks 'is_int' => ['constFold' => self::FOLD_SSA_TYPE, 'constFoldExtra' => self::TYPE_INT], 'is_float' => ['constFold' => self::FOLD_SSA_TYPE, 'constFoldExtra' => self::TYPE_FLOAT], 'is_bool' => ['constFold' => self::FOLD_SSA_TYPE, 'constFoldExtra' => self::TYPE_BOOL], // Custom handlers 'is_null' => ['handler' => 'genIsNull'], 'get_class' => ['handler' => 'genGetClassOptimized'], 'get_parent_class' => ['handler' => 'genGetParentClass'], 'function_exists' => ['handler' => 'genFunctionExistsOptimized'], 'func_get_arg' => ['handler' => 'genFuncGetArgOptimized'], 'func_get_args' => ['handler' => 'genFuncGetArgsOptimized'], 'func_num_args' => ['handler' => 'genFuncNumArgsOptimized'], 'compact' => ['handler' => 'genCompactOptimized'], 'array_keys' => ['handler' => 'genArrayKeys'], 'array_key_exists' => ['handler' => 'genArrayKeyExists'], 'round' => ['handler' => 'genRound'], 'count' => ['handler' => 'genCount'], 'define' => ['handler' => 'genDefine'], 'is_callable' => ['handler' => 'genIsCallable'], ]; $config = $extra; foreach ($simple as $name) { if (!isset($config[$name])) { $config[$name] = []; } } return $config; } // ========================================================================= // Main entry point // ========================================================================= protected function parseFuncCallWithOptimizer(string $name, Node\Expr\FuncCall $expr): string|false { $config = $this->getFuncCallConfig()[$name] ?? null; if ($config === null) { return false; } if (is_string($config)) { $targetName = $config; $config = ['target' => $targetName]; $name = $targetName; } if (isset($config['handler'])) { return $this->{$config['handler']}($name, $expr, $config); } if (isset($config['bigDispatch'])) { return $this->dispatchBigType($expr, $config['bigDispatch']); } if (isset($config['conversion'])) { return $this->dispatchConversion($expr, $config['conversion']); } return $this->dispatchFuncCall($name, $expr, $config); } // ========================================================================= // Generic dispatcher // ========================================================================= private function dispatchFuncCall(string $name, Node\Expr\FuncCall $expr, array $config): string|false { $target = $config['target'] ?? null; if ($target === null) { $target = 'php::std::' . $name; } elseif (!str_starts_with($target, 'php::')) { $target = 'php::std::' . $target; } $refInfo = $this->getArgReflectionInfo($name); $argTypeStr = $config['args'] ?? ($refInfo['args'] ?? ''); $defaults = $config['defaults'] ?? []; if (!empty($config['variadic']) || ($refInfo['variadic'] ?? false)) { return $this->genVariadicCall($target, $expr); } if (isset($config['constFold'])) { $folded = $this->tryConstFold($config['constFold'], $config['constFoldExtra'] ?? null, $expr); if ($folded !== false) { return $folded; } } $args = $this->buildArgList($expr, $argTypeStr, $defaults); return $target . '(' . implode(', ', $args) . ')'; } // ========================================================================= // Auto-detect argument types from PHP reflection // ========================================================================= private function getArgReflectionInfo(string $funcName): array { if (isset($this->_autoArgTypes[$funcName])) { return $this->_autoArgTypes[$funcName]; } $ref = Reflection::getFunction($funcName); if (!$ref) { return $this->_autoArgTypes[$funcName] = ['args' => '', 'variadic' => false]; } $types = []; $variadic = false; foreach ($ref->getParameters() as $param) { if ($param->isVariadic()) { $variadic = true; continue; } $char = $this->phpParamToArgChar($param); if ($param->isOptional()) { $char = self::ARG_OPTIONAL . $char; } $types[] = $char; } return $this->_autoArgTypes[$funcName] = ['args' => implode('_', $types), 'variadic' => $variadic]; } private function phpParamToArgChar(\ReflectionParameter $param): string { if ($param->isPassedByReference()) { return self::ARG_TYPE_REF; } $type = $param->getType(); if ($type instanceof \ReflectionNamedType) { return match ($type->getName()) { 'string' => self::ARG_TYPE_STR, 'int' => self::ARG_TYPE_INT, 'float' => self::ARG_TYPE_FLOAT, 'bool' => self::ARG_TYPE_BOOL, 'array' => self::ARG_TYPE_ARRAY, default => self::ARG_TYPE_VAR, }; } return self::ARG_TYPE_VAR; } // ========================================================================= // Arg helpers // ========================================================================= private function getArg(Node\Expr\FuncCall $expr, int $i): string { return $this->parseIdentifier($expr->args[$i]->value); } private function getRefArg(Node\Expr\FuncCall $expr, int $i): string { $arg = $expr->args[$i]->value; if ($this->isArrayDimFetch($arg) and $this->isVarExpr($arg->var)) { $array = $this->parseIdentifier($arg->var); if ($arg->dim !== null) { $tmpRef = $this->genTmpVarName(); $this->context->beforeStmtLines[] = 'auto&& ' . $tmpRef . ' = ' . $array . '.item(' . $this->identifierToStr($arg->dim) . ', true);'; return $tmpRef; } } if ($this->isPropertyFetch($arg) and $this->isVarExpr($arg->var)) { $obj = $this->parseIdentifier($arg->var); $tmpRef = $this->genTmpVarName(); $this->context->beforeStmtLines[] = 'auto&& ' . $tmpRef . ' = ' . $obj . '.attr(' . $this->identifierToStr($arg->name) . ', true);'; return $tmpRef; } return $this->getArg($expr, $i); } private function resolveArg(Node\Expr\FuncCall $expr, int $index, string $type): string { $base = ($type[0] ?? '') === self::ARG_OPTIONAL ? substr($type, 1) : $type; $raw = ($base === self::ARG_TYPE_REF) ? $this->getRefArg($expr, $index) : $this->getArg($expr, $index); return match ($base) { self::ARG_TYPE_STR => $this->convertStringExpr($raw), self::ARG_TYPE_INT => $this->convertIntExpr($raw), self::ARG_TYPE_FLOAT => $this->convertFloatExpr($raw), self::ARG_TYPE_BOOL => $this->convertBoolExpr($raw), self::ARG_TYPE_ARRAY => $this->convertStdContainerArrayExpr($expr, $index, $raw), default => $raw, }; } private function convertStdContainerArrayExpr(Node\Expr\FuncCall $expr, int $index, string $raw): string { $arg = $expr->args[$index]->value; if ($this->isVarExpr($arg) and $this->isStdContainer($arg->name)) { return $this->convertArrayExpr($raw . '_ref'); } return $this->convertArrayExpr($raw); } private function buildArgList(Node\Expr\FuncCall $expr, string $argTypeStr, array $defaults = []): array { if ($argTypeStr === '') { return []; } $types = explode('_', $argTypeStr); $argCount = count($expr->args); $args = []; foreach ($types as $i => $type) { $optional = ($type[0] ?? '') === self::ARG_OPTIONAL; if ($optional && $argCount <= $i) { if (isset($defaults[$i])) { $args[] = $defaults[$i]; } continue; } $args[] = $this->resolveArg($expr, $i, $type); } return $args; } // ========================================================================= // Variadic, conversion, Big* dispatch // ========================================================================= private function genVariadicCall(string $target, Node\Expr\FuncCall $expr): string { $args = []; foreach ($expr->args as $arg) { $args[] = $this->parseExpr($arg->value); } return $target . '(' . implode(', ', $args) . ')'; } private function dispatchConversion(Node\Expr\FuncCall $expr, string $convType): string { $arg = $expr->args[0]->value; $type = $this->detectTypeOfExpr($arg); $parsed = $this->parseExpr($arg); if ($convType === self::ARG_TYPE_STR) { return match ($type) { self::TYPE_BIGINT => 'php::BigInt::toString(' . $parsed . ')', self::TYPE_BIGFLOAT => 'php::BigFloat::toString(' . $parsed . ')', self::TYPE_DECIMAL => 'php::Decimal::toString(' . $parsed . ')', default => $this->convertStringExpr($parsed), }; } return match ($convType) { self::ARG_TYPE_INT => $this->convertIntExpr($parsed), self::ARG_TYPE_FLOAT => $this->convertFloatExpr($parsed), self::ARG_TYPE_BOOL => $this->convertBoolExpr($parsed), default => $parsed, }; } private function dispatchBigType(Node\Expr\FuncCall $expr, array $dispatch): string|false { $type = $this->detectTypeOfExpr($expr->args[0]->value); $target = $dispatch[$type] ?? $dispatch['fallback'] ?? null; if (!$target) { return false; } $args = [$this->parseExpr($expr->args[0]->value)]; if (count($expr->args) >= 2) { $args[] = $this->parseExpr($expr->args[1]->value); } return $target . '(' . implode(', ', $args) . ')'; } // ========================================================================= // Constant folding // ========================================================================= private function tryConstFold(int $rule, mixed $extra, Node\Expr\FuncCall $expr): string|false { return match ($rule) { self::FOLD_STRING_LEN => $this->doFoldStringLen($expr), self::FOLD_STRING_CASE => $this->doFoldStringCase($expr), self::FOLD_CMP2 => $this->doFoldCmp2($expr), self::FOLD_CMP3 => $this->doFoldCmp3($expr), self::FOLD_COUNT_LITERAL => $this->doFoldCountLiteral($expr), self::FOLD_KNOWN_CLASS => $this->doFoldKnownClass($expr), self::FOLD_KNOWN_CONSTANT => $this->doFoldKnownConstant($expr), self::FOLD_SSA_TYPE => $this->doFoldSsaType($expr, $extra), default => false, }; } private function doFoldStringLen(Node\Expr\FuncCall $expr): string|false { $arg = $expr->args[0]->value; return ($arg instanceof Node\Scalar\String_) ? strlen($arg->value) . $this->getPlatform()->getIntegerLiteralSuffix() : false; } private function doFoldStringCase(Node\Expr\FuncCall $expr): string|false { $arg = $expr->args[0]->value; if (!$this->isScalarString($arg)) { return false; } $func = $expr->name instanceof Node\Name ? $expr->name->toLowerString() : ''; $val = $func === 'strtoupper' ? strtoupper($arg->value) : strtolower($arg->value); return $this->getLiteralString($val); } private function doFoldCmp2(Node\Expr\FuncCall $expr): string|false { $a0 = $expr->args[0]->value; $a1 = $expr->args[1]->value; if (!$this->isScalarString($a0) || !$this->isScalarString($a1)) { return false; } $func = $expr->name instanceof Node\Name ? $expr->name->toLowerString() : ''; $result = $func === 'strcasecmp' ? strcasecmp($a0->value, $a1->value) : strcmp($a0->value, $a1->value); return $result . $this->getPlatform()->getIntegerLiteralSuffix(); } private function doFoldCmp3(Node\Expr\FuncCall $expr): string|false { $a0 = $expr->args[0]->value; $a1 = $expr->args[1]->value; $a2 = $expr->args[2]->value; if (!$this->isScalarString($a0) || !$this->isScalarString($a1) || !$this->isScalarInt($a2)) { return false; } $func = $expr->name instanceof Node\Name ? $expr->name->toLowerString() : ''; $result = $func === 'strncasecmp' ? strncasecmp($a0->value, $a1->value, (int) $a2->value) : strncmp($a0->value, $a1->value, (int) $a2->value); return $result . $this->getPlatform()->getIntegerLiteralSuffix(); } private function doFoldCountLiteral(Node\Expr\FuncCall $expr): string|false { if (count($expr->args) !== 1 || !($expr->args[0] instanceof Node\Arg)) { return false; } $arg = $expr->args[0]->value; if ($arg instanceof Node\Expr\Array_) { return count($arg->items) . $this->getPlatform()->getIntegerLiteralSuffix(); } return $this->genStdContainerCount($arg); } private function doFoldKnownClass(Node\Expr\FuncCall $expr): string|false { $cn = $expr->args[0]->value; return ($this->isScalarString($cn) && $this->hasClass($cn->value)) ? 'true' : false; } private function doFoldKnownConstant(Node\Expr\FuncCall $expr): string|false { $cn = $expr->args[0]->value; return ($this->isScalarString($cn) && $this->hasConstant($cn->value)) ? 'true' : false; } private function doFoldSsaType(Node\Expr\FuncCall $expr, mixed $expectType): string|false { if (count($expr->args) !== 1 || !($expr->args[0] instanceof Node\Arg)) { return false; } return ($this->detectTypeOfExpr($expr->args[0]->value) === $expectType) ? 'true' : false; } // ========================================================================= // Custom handlers // ========================================================================= private function genIsNull(string $n, Node\Expr\FuncCall $e, array $c): string { return $this->parseIdentifier($e->args[0]->value) . '.isNull()'; } private function genIsCallable(string $n, Node\Expr\FuncCall $e, array $c): string|false { if (count($e->args) >= 3) { return false; } return $this->dispatchFuncCall('is_callable', $e, ['target' => 'php::std::is_callable']); } private function genGetClassOptimized(string $n, Node\Expr\FuncCall $e, array $c): string { $obj = $e->args[0]->value; if ($this->isVarExpr($obj) && $this->isTypedObject($obj->name)) { return $this->getLiteralString($this->getObjectType($obj->name)); } return 'php::std::get_class(' . $this->parseIdentifier($obj) . ')'; } private function genGetParentClass(string $n, Node\Expr\FuncCall $e, array $c): string { if (count($e->args) === 0) { if ($this->classDef && $this->classDef->extends) { return $this->getLiteralString($this->classDef->extends); } return 'false'; } $arg = $e->args[0]->value; if ($this->isScalarString($arg)) { $cls = $this->getClass($arg->value); if ($cls && $cls->extends) return $this->getLiteralString($cls->extends); if ($cls && !$cls->extends) return 'false'; } return 'php::std::get_parent_class(' . $this->parseIdentifier($arg) . ')'; } private function genFunctionExistsOptimized(string $n, Node\Expr\FuncCall $e, array $c): string { return $this->genFunctionExists($n, $e); } private function genFuncGetArgOptimized(string $n, Node\Expr\FuncCall $e, array $c): string { return $this->genFuncGetArg($n, $e); } private function genFuncGetArgsOptimized(string $n, Node\Expr\FuncCall $e, array $c): string { return $this->genFuncGetArgs($n, $e); } private function genFuncNumArgsOptimized(string $n, Node\Expr\FuncCall $e, array $c): string { return $this->genFuncNumArgs($n, $e); } private function genCompactOptimized(string $n, Node\Expr\FuncCall $e, array $c): string { return $this->genCompactOrig($e); } private function genArrayKeys(string $n, Node\Expr\FuncCall $e, array $c): string { $cnt = count($e->args); if ($cnt >= 3) { return 'php::std::array_keys_filter(' . $this->getArg($e, 0) . ', ' . $this->getArg($e, 1) . ', ' . $this->getArg($e, 2) . ')'; } if ($cnt >= 2) { return 'php::std::array_keys_filter(' . $this->getArg($e, 0) . ', ' . $this->getArg($e, 1) . ', false)'; } return 'php::std::array_keys(' . $this->getArg($e, 0) . ')'; } private function genArrayKeyExists(string $n, Node\Expr\FuncCall $e, array $c): string { return $this->getArg($e, 1) . '.offsetExists(' . $this->getArg($e, 0) . ')'; } private function genRound(string $n, Node\Expr\FuncCall $e, array $c): string { $type = $this->detectTypeOfExpr($e->args[0]->value); if ($type === self::TYPE_DECIMAL) { $a0 = $this->parseExpr($e->args[0]->value); if (count($e->args) >= 2) { return 'php::Decimal::round(' . $a0 . ', ' . $this->parseExpr($e->args[1]->value) . ')'; } return 'php::Decimal::round(' . $a0 . ')'; } $args = count($e->args); if ($args >= 3) { return 'php::std::round(' . $this->getArg($e, 0) . ', ' . $this->convertIntExpr($this->getArg($e, 1)) . ', ' . $this->convertIntExpr($this->getArg($e, 2)) . ')'; } if ($args >= 2) { return 'php::std::round(' . $this->getArg($e, 0) . ', ' . $this->convertIntExpr($this->getArg($e, 1)) . ')'; } return 'php::std::round(' . $this->getArg($e, 0) . ')'; } private function genCount(string $n, Node\Expr\FuncCall $e, array $c): string { $folded = $this->doFoldCountLiteral($e); if ($folded !== false) return $folded; if (count($e->args) >= 2) { return 'php::std::count(' . $this->getArg($e, 0) . ', ' . $this->convertIntExpr($this->getArg($e, 1)) . ')'; } return 'php::std::count(' . $this->getArg($e, 0) . ')'; } private function genDefine(string $n, Node\Expr\FuncCall $e, array $c): string|false { $arg = $e->args[0]->value; if ($this->isScalarString($arg) && !$this->isValidDefineName($arg->value)) { $this->fatalError($e, 'Invalid define name `' . $arg->value . '`'); } $args = count($e->args) >= 3 ? 3 : 2; if ($args == 3) { return 'php::std::define(' . $this->getArg($e, 0) . ', ' . $this->getArg($e, 1) . ', ' . $this->getArg($e, 2) . ')'; } return 'php::std::define(' . $this->getArg($e, 0) . ', ' . $this->getArg($e, 1) . ')'; } // ========================================================================= // Legacy helpers // ========================================================================= private function genFuncGetArgs(string $name, Node\Expr\FuncCall $expr): string { $this->warningUndefinedBehavior($expr); $funcDef = $this->functionDef; $list = []; foreach ($funcDef->argInfoList as $i => $argInfo) { if ($argInfo->variadic) { $tmpVar = $this->addTmpVar(self::TYPE_ARRAY); $this->context->beforeStmtLines[] = $this->genArray($list) . ';'; $this->context->beforeStmtLines[] = $tmpVar . '.merge(' . $argInfo->name . ');'; return $tmpVar; } $list[] = $argInfo->name; } return $this->genArray($list); } protected function genFuncGetArg(string $name, Node\Expr\FuncCall $expr) { $this->warningUndefinedBehavior($expr); $position = $expr->args[0]->value; if ($this->isScalarInt($position)) { $funcDef = $this->functionDef; $posInt = intval($position->value); foreach ($funcDef->argInfoList as $i => $argInfo) { if ($argInfo->variadic) { return $argInfo->name . '.offsetGet(' . ($posInt - $i) . ')'; } if ($i == $posInt) { return $argInfo->name; } } $this->fatalError($expr, 'wrong parameter position `' . $posInt . '`'); } else { $this->fatalError($expr, 'func_get_arg() only support scalar int'); } } private function genFuncNumArgs(string $name, Node\Expr\FuncCall $expr): string { $this->warningUndefinedBehavior($expr); $funcDef = $this->functionDef; foreach ($funcDef->argInfoList as $i => $argInfo) { if ($argInfo->variadic) { return '(' . $argInfo->name . '.count() + ' . $i . ')'; } } return count($funcDef->argInfoList); } protected function genFunctionExists(string $name, Node\Expr\FuncCall $expr): string { $funcName = $expr->args[0]->value; if ($this->isScalarString($funcName)) { $nameLower = strtolower(trim($funcName->value, '\\')); if ($this->findNativeFunction($nameLower)) { return 'true'; } $funcName = $this->getLiteralString($nameLower); return 'php::std::function_exists(' . $funcName . ')'; } return 'php::std::function_exists(' . $this->parseIdentifier($funcName) . ')'; } private function genGetClass(Node\Expr\FuncCall $expr): string { $object = $expr->args[0]->value; if ($this->isVarExpr($object) and $this->isTypedObject($object->name)) { return $this->getLiteralString($this->getObjectType($object->name)); } return 'php::std::get_class(' . $this->parseIdentifier($object) . ')'; } private function genCompactOrig(Node\Expr\FuncCall $expr): string { $list = []; foreach ($expr->args as $arg) { if (!$this->isScalarString($arg->value)) { $this->fatalError($expr, 'The argument of compact function can only be literal string'); } $var = $arg->value->value; if (!$this->hasVar($var)) { $this->errorUndefinedVariable($var); } if ($this->isSuperGlobal($var)) { $this->fatalError($expr, 'Cannot use super global variable `' . $var . '` in compact function'); } $key = $this->getLiteralString($var); $cVar = $this->escapeVarName($var); $list[] = '{' . $key . '.str(), php::Var(' . $cVar . ')}'; } return 'php::Array{' . implode(', ', $list) . '}'; } // ========================================================================= // Utility // ========================================================================= protected function isValidDefineName(string $name): bool { return preg_match('/^(?!\d)[\p{L}_][\p{L}\p{N}_]*$/u', $name) === 1; } }