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 /
Dbal /
Delete
Unzip
Name
Size
Permission
Date
Action
DatabaseName.php
1.24
KB
-rw-r--r--
2023-02-07 21:35
DbalInterface.php
21.75
KB
-rw-r--r--
2023-02-07 21:35
DbiExtension.php
3.57
KB
-rw-r--r--
2023-02-07 21:35
DbiMysqli.php
10.44
KB
-rw-r--r--
2023-02-07 21:35
MysqliResult.php
6.26
KB
-rw-r--r--
2023-02-07 21:35
ResultInterface.php
2.64
KB
-rw-r--r--
2023-02-07 21:35
TableName.php
1.24
KB
-rw-r--r--
2023-02-07 21:35
Warning.php
1.58
KB
-rw-r--r--
2023-02-07 21:35
Save
Rename
<?php declare(strict_types=1); namespace PhpMyAdmin\Dbal; use Stringable; use Webmozart\Assert\Assert; use Webmozart\Assert\InvalidArgumentException; /** * @psalm-immutable */ final class DatabaseName implements Stringable { /** * @see https://dev.mysql.com/doc/refman/en/identifier-length.html * @see https://mariadb.com/kb/en/identifier-names/#maximum-length */ private const MAX_LENGTH = 64; /** * @var string * @psalm-var non-empty-string */ private $name; /** * @param mixed $name * * @throws InvalidArgumentException */ private function __construct($name) { Assert::stringNotEmpty($name); Assert::maxLength($name, self::MAX_LENGTH); Assert::notEndsWith($name, ' '); $this->name = $name; } /** * @param mixed $name * * @throws InvalidArgumentException */ public static function fromValue($name): self { return new self($name); } /** * @psalm-return non-empty-string */ public function getName(): string { return $this->name; } /** * @psalm-return non-empty-string */ public function __toString(): string { return $this->name; } }