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.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
libraries /
classes /
Table /
Delete
Unzip
Name
Size
Permission
Date
Action
Maintenance
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
ColumnsDefinition.php
21.24
KB
-rw-r--r--
2023-02-07 21:35
Indexes.php
3.72
KB
-rw-r--r--
2023-02-07 21:35
Maintenance.php
5.16
KB
-rw-r--r--
2025-04-08 15:25
Search.php
11.68
KB
-rw-r--r--
2023-02-07 21:35
Save
Rename
<?php declare(strict_types=1); namespace PhpMyAdmin\Table; use PhpMyAdmin\DatabaseInterface; use PhpMyAdmin\Dbal\DatabaseName; use PhpMyAdmin\Dbal\TableName; use PhpMyAdmin\Dbal\Warning; use PhpMyAdmin\Index; use PhpMyAdmin\Table\Maintenance\Message; use PhpMyAdmin\Util; use function __; use function htmlspecialchars; use function implode; use function sprintf; final class Maintenance { /** @var DatabaseInterface */ private $dbi; public function __construct(DatabaseInterface $dbi) { $this->dbi = $dbi; } /** * @param TableName[] $tables * * @return array<int, array<string, Message[]>|string> * @psalm-return array{array<string, Message[]>, string} */ public function getAnalyzeTableRows(DatabaseName $db, array $tables): array { $backQuotedTables = []; foreach ($tables as $table) { $backQuotedTables[] = Util::backquote($table->getName()); } $query = 'ANALYZE TABLE ' . implode(', ', $backQuotedTables) . ';'; $this->dbi->selectDb($db); /** @var array<int, array<string, string>> $result */ $result = $this->dbi->fetchResult($query); $rows = []; foreach ($result as $row) { $message = Message::fromArray($row); $rows[$message->table][] = $message; } return [$rows, $query]; } /** * @param TableName[] $tables * * @return array<int, array<string, Message[]>|string> * @psalm-return array{array<string, Message[]>, string} */ public function getCheckTableRows(DatabaseName $db, array $tables): array { $backQuotedTables = []; foreach ($tables as $table) { $backQuotedTables[] = Util::backquote($table->getName()); } $query = 'CHECK TABLE ' . implode(', ', $backQuotedTables) . ';'; $this->dbi->selectDb($db); /** @var array<int, array<string, string>> $result */ $result = $this->dbi->fetchResult($query); $rows = []; foreach ($result as $row) { $message = Message::fromArray($row); $rows[$message->table][] = $message; } return [$rows, $query]; } /** * @param TableName[] $tables * * @return array<int, array<string, array<int, array<string, string|null>>>|string> * @psalm-return array{array<int, array<string, string|null>>, string, Warning[]} */ public function getChecksumTableRows(DatabaseName $db, array $tables): array { $backQuotedTables = []; foreach ($tables as $table) { $backQuotedTables[] = Util::backquote($table->getName()); } $query = 'CHECKSUM TABLE ' . implode(', ', $backQuotedTables) . ';'; $this->dbi->selectDb($db); /** @var array<int, array<string, string|null>> $rows */ $rows = $this->dbi->fetchResult($query); $warnings = $this->dbi->getWarnings(); return [$rows, $query, $warnings]; } /** * @param TableName[] $tables */ public function getIndexesProblems(DatabaseName $db, array $tables): string { $indexesProblems = ''; foreach ($tables as $table) { $check = Index::findDuplicates($table->getName(), $db->getName()); if (empty($check)) { continue; } $indexesProblems .= htmlspecialchars(sprintf(__('Problems with indexes of table `%s`'), $table->getName())); $indexesProblems .= $check; } return $indexesProblems; } /** * @param TableName[] $tables * * @return array<int, array<string, Message[]>|string> * @psalm-return array{array<string, Message[]>, string} */ public function getOptimizeTableRows(DatabaseName $db, array $tables): array { $backQuotedTables = []; foreach ($tables as $table) { $backQuotedTables[] = Util::backquote($table->getName()); } $query = 'OPTIMIZE TABLE ' . implode(', ', $backQuotedTables) . ';'; $this->dbi->selectDb($db); /** @var array<int, array<string, string>> $result */ $result = $this->dbi->fetchResult($query); $rows = []; foreach ($result as $row) { $message = Message::fromArray($row); $rows[$message->table][] = $message; } return [$rows, $query]; } /** * @param TableName[] $tables * * @return array<int, array<string, Message[]>|string> * @psalm-return array{array<string, Message[]>, string} */ public function getRepairTableRows(DatabaseName $db, array $tables): array { $backQuotedTables = []; foreach ($tables as $table) { $backQuotedTables[] = Util::backquote($table->getName()); } $query = 'REPAIR TABLE ' . implode(', ', $backQuotedTables) . ';'; $this->dbi->selectDb($db); /** @var array<int, array<string, string>> $result */ $result = $this->dbi->fetchResult($query); $rows = []; foreach ($result as $row) { $message = Message::fromArray($row); $rows[$message->table][] = $message; } return [$rows, $query]; } }