__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\ExpressionLanguage;
use Symfony\Contracts\Service\ResetInterface;
/**
* Compiles a node to PHP code.
*
* @author Fabien Potencier <fabien@symfony.com>
*/
class Compiler implements ResetInterface
{
private string $source = '';
private array $functions;
public function __construct(array $functions)
{
$this->functions = $functions;
}
/**
* @return array
*/
public function getFunction(string $name)
{
return $this->functions[$name];
}
/**
* Gets the current PHP code after compilation.
*/
public function getSource(): string
{
return $this->source;
}
/**
* @return $this
*/
public function reset(): static
{
$this->source = '';
return $this;
}
/**
* Compiles a node.
*
* @return $this
*/
public function compile(Node\Node $node): static
{
$node->compile($this);
return $this;
}
/**
* @return string
*/
public function subcompile(Node\Node $node)
{
$current = $this->source;
$this->source = '';
$node->compile($this);
$source = $this->source;
$this->source = $current;
return $source;
}
/**
* Adds a raw string to the compiled code.
*
* @return $this
*/
public function raw(string $string): static
{
$this->source .= $string;
return $this;
}
/**
* Adds a quoted string to the compiled code.
*
* @return $this
*/
public function string(string $value): static
{
$this->source .= sprintf('"%s"', addcslashes($value, "\0\t\"\$\\"));
return $this;
}
/**
* Returns a PHP representation of a given value.
*
* @return $this
*/
public function repr(mixed $value): static
{
if (\is_int($value) || \is_float($value)) {
if (false !== $locale = setlocale(\LC_NUMERIC, 0)) {
setlocale(\LC_NUMERIC, 'C');
}
$this->raw($value);
if (false !== $locale) {
setlocale(\LC_NUMERIC, $locale);
}
} elseif (null === $value) {
$this->raw('null');
} elseif (\is_bool($value)) {
$this->raw($value ? 'true' : 'false');
} elseif (\is_array($value)) {
$this->raw('[');
$first = true;
foreach ($value as $key => $value) {
if (!$first) {
$this->raw(', ');
}
$first = false;
$this->repr($key);
$this->raw(' => ');
$this->repr($value);
}
$this->raw(']');
} else {
$this->string($value);
}
return $this;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Node | Folder | 0755 |
|
|
| Compiler.php | File | 3.05 KB | 0644 |
|
| Expression.php | File | 662 B | 0644 |
|
| ExpressionFunction.php | File | 3.07 KB | 0644 |
|
| ExpressionFunctionProviderInterface.php | File | 482 B | 0644 |
|
| ExpressionLanguage.php | File | 5.38 KB | 0644 |
|
| Lexer.php | File | 4.5 KB | 0644 |
|
| ParsedExpression.php | File | 776 B | 0644 |
|
| Parser.php | File | 17.19 KB | 0644 |
|
| SerializedParsedExpression.php | File | 943 B | 0644 |
|
| SyntaxError.php | File | 1.22 KB | 0644 |
|
| Token.php | File | 1.44 KB | 0644 |
|
| TokenStream.php | File | 2.1 KB | 0644 |
|
| autoload.php | File | 2.93 KB | 0644 |
|