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; /** * Defines the core helper infrastructure of the library. */ class Core { /** * Whether errors should throw exceptions or just be stored. * * @see static::$errors * * @var bool */ public $strict = false; /** * List of errors that occurred during lexing. * * Usually, the lexing does not stop once an error occurred because that * error might be false positive or a partial result (even a bad one) * might be needed. * * @see Core::error() * * @var Exception[] */ public $errors = []; /** * Creates a new error log. * * @param Exception $error the error exception * * @return void * * @throws Exception throws the exception, if strict mode is enabled. */ public function error($error) { if ($this->strict) { throw $error; } $this->errors[] = $error; } }