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 : 18.117.250.210
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 /
Statements /
Delete
Unzip
Name
Size
Permission
Date
Action
AlterStatement.php
3.68
KB
-rw-r--r--
2020-10-15 15:19
AnalyzeStatement.php
636
B
-rw-r--r--
2020-10-15 15:19
BackupStatement.php
527
B
-rw-r--r--
2020-10-15 15:19
CallStatement.php
739
B
-rw-r--r--
2020-10-15 15:19
CheckStatement.php
527
B
-rw-r--r--
2020-10-15 15:19
ChecksumStatement.php
451
B
-rw-r--r--
2020-10-15 15:19
CreateStatement.php
22.39
KB
-rw-r--r--
2020-10-15 15:19
DeleteStatement.php
11.4
KB
-rw-r--r--
2020-10-15 15:19
DropStatement.php
1.4
KB
-rw-r--r--
2020-10-15 15:19
ExplainStatement.php
200
B
-rw-r--r--
2020-10-15 15:19
InsertStatement.php
7.28
KB
-rw-r--r--
2020-10-15 15:19
LoadStatement.php
10.81
KB
-rw-r--r--
2020-10-15 15:19
LockStatement.php
3.41
KB
-rw-r--r--
2020-10-15 15:19
MaintenanceStatement.php
1.47
KB
-rw-r--r--
2020-10-15 15:19
NotImplementedStatement.php
1.34
KB
-rw-r--r--
2020-10-15 15:19
OptimizeStatement.php
641
B
-rw-r--r--
2020-10-15 15:19
PurgeStatement.php
3.76
KB
-rw-r--r--
2020-10-15 15:19
RenameStatement.php
1.34
KB
-rw-r--r--
2020-10-15 15:19
RepairStatement.php
570
B
-rw-r--r--
2020-10-15 15:19
ReplaceStatement.php
5.21
KB
-rw-r--r--
2020-10-15 15:19
RestoreStatement.php
477
B
-rw-r--r--
2020-10-15 15:19
SelectStatement.php
7.26
KB
-rw-r--r--
2020-10-15 15:19
SetStatement.php
1.98
KB
-rw-r--r--
2020-10-15 15:19
ShowStatement.php
1.25
KB
-rw-r--r--
2020-10-15 15:19
TransactionStatement.php
2.29
KB
-rw-r--r--
2020-10-15 15:19
TruncateStatement.php
747
B
-rw-r--r--
2020-10-15 15:19
UpdateStatement.php
2.28
KB
-rw-r--r--
2020-10-15 15:19
Save
Rename
<?php /** * `RENAME` statement. */ declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Statements; use PhpMyAdmin\SqlParser\Components\RenameOperation; use PhpMyAdmin\SqlParser\Parser; use PhpMyAdmin\SqlParser\Statement; use PhpMyAdmin\SqlParser\Token; use PhpMyAdmin\SqlParser\TokensList; /** * `RENAME` statement. * * RENAME TABLE tbl_name TO new_tbl_name * [, tbl_name2 TO new_tbl_name2] ... */ class RenameStatement extends Statement { /** * The old and new names of the tables. * * @var RenameOperation[] */ public $renames; /** * Function called before the token is processed. * * Skips the `TABLE` keyword after `RENAME`. * * @param Parser $parser the instance that requests parsing * @param TokensList $list the list of tokens to be parsed * @param Token $token the token that is being parsed */ public function before(Parser $parser, TokensList $list, Token $token) { if (($token->type === Token::TYPE_KEYWORD) && ($token->keyword === 'RENAME')) { // Checking if it is the beginning of the query. $list->getNextOfTypeAndValue(Token::TYPE_KEYWORD, 'TABLE'); } } /** * @return string */ public function build() { return 'RENAME TABLE ' . RenameOperation::build($this->renames); } }