Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
phpMyAdmin /
libraries /
classes /
Dbal /
Delete
Unzip
Name
Size
Permission
Date
Action
DatabaseName.php
1.24
KB
-rw-rw-rw-
2023-02-07 22:26
DbalInterface.php
21.75
KB
-rw-rw-rw-
2023-02-07 22:26
DbiExtension.php
3.57
KB
-rw-rw-rw-
2023-02-07 22:26
DbiMysqli.php
10.44
KB
-rw-rw-rw-
2023-02-07 22:26
MysqliResult.php
6.26
KB
-rw-rw-rw-
2023-02-07 22:26
ResultInterface.php
2.64
KB
-rw-rw-rw-
2023-02-07 22:26
TableName.php
1.24
KB
-rw-rw-rw-
2023-02-07 22:26
Warning.php
1.58
KB
-rw-rw-rw-
2023-02-07 22:26
Save
Rename
<?php declare(strict_types=1); namespace PhpMyAdmin\Dbal; use Stringable; use Webmozart\Assert\Assert; use Webmozart\Assert\InvalidArgumentException; /** * @psalm-immutable */ final class TableName 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; } }