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 /
vendor /
slim /
psr7 /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Factory
[ DIR ]
drwxrwxrwx
2024-07-26 17:41
Interfaces
[ DIR ]
drwxrwxrwx
2024-07-26 17:41
Cookies.php
5.27
KB
-rw-rw-rw-
2023-02-07 22:26
Environment.php
1.51
KB
-rw-rw-rw-
2023-02-07 22:26
Header.php
1.9
KB
-rw-rw-rw-
2023-02-07 22:26
Headers.php
8.68
KB
-rw-rw-rw-
2023-02-07 22:26
Message.php
3.8
KB
-rw-rw-rw-
2023-02-07 22:26
NonBufferedBody.php
2.45
KB
-rw-rw-rw-
2023-02-07 22:26
Request.php
8.38
KB
-rw-rw-rw-
2023-02-07 22:26
Response.php
8.5
KB
-rw-rw-rw-
2023-02-07 22:26
Stream.php
8.98
KB
-rw-rw-rw-
2023-02-07 22:26
UploadedFile.php
8.34
KB
-rw-rw-rw-
2023-02-07 22:26
Uri.php
11.22
KB
-rw-rw-rw-
2023-02-07 22:26
Save
Rename
<?php /** * Slim Framework (https://slimframework.com) * * @license https://github.com/slimphp/Slim-Psr7/blob/master/LICENSE.md (MIT License) */ declare(strict_types=1); namespace Slim\Psr7; use InvalidArgumentException; use function array_merge; use function is_array; use function is_string; class Header { /** * @var string */ private $originalName; /** * @var string */ private $normalizedName; /** * @var array */ private $values; /** * Header constructor. * * @param string $originalName * @param string $normalizedName * @param array $values */ public function __construct(string $originalName, string $normalizedName, array $values) { $this->originalName = $originalName; $this->normalizedName = $normalizedName; $this->values = $values; } /** * @return string */ public function getOriginalName(): string { return $this->originalName; } /** * @return string */ public function getNormalizedName(): string { return $this->normalizedName; } /** * @param string $value * * @return self */ public function addValue(string $value): self { $this->values[] = $value; return $this; } /** * @param array|string $values * * @return self */ public function addValues($values): self { if (is_string($values)) { return $this->addValue($values); } if (!is_array($values)) { throw new InvalidArgumentException('Parameter 1 of Header::addValues() should be a string or an array.'); } $this->values = array_merge($this->values, $values); return $this; } /** * @return array */ public function getValues(): array { return $this->values; } }