Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.14.249.33
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
2024-03-13 04:07
Contexts
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
Exceptions
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
Statements
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
Tools
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
Utils
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
Component.php
2.05
KB
-rw-r--r--
2020-10-15 15:19
Context.php
18.84
KB
-rw-r--r--
2020-10-15 15:19
Core.php
1004
B
-rw-r--r--
2020-10-15 15:19
Lexer.php
32.97
KB
-rw-r--r--
2020-10-15 15:19
Parser.php
20.78
KB
-rw-r--r--
2020-10-15 15:19
Statement.php
17.77
KB
-rw-r--r--
2020-10-15 15:19
Token.php
9.32
KB
-rw-r--r--
2020-10-15 15:19
TokensList.php
4.51
KB
-rw-r--r--
2022-01-09 16:40
Translator.php
1.57
KB
-rw-r--r--
2020-10-15 15:19
UtfString.php
4.91
KB
-rw-r--r--
2022-01-09 16:40
autoload.php
8.73
KB
-rw-r--r--
2022-01-09 16:40
Save
Rename
<?php /** * Defines the core helper infrastructure of the library. */ declare(strict_types=1); namespace PhpMyAdmin\SqlParser; use Exception; 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 * * @throws Exception throws the exception, if strict mode is enabled. */ public function error($error) { if ($this->strict) { throw $error; } $this->errors[] = $error; } }