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 Psr\Http\Message\StreamInterface; use RuntimeException; use function flush; use function ob_get_clean; use function ob_get_level; use function strlen; use const SEEK_SET; class NonBufferedBody implements StreamInterface { /** * {@inheritdoc} */ public function __toString(): string { return ''; } /** * {@inheritdoc} */ public function close(): void { throw new RuntimeException('A NonBufferedBody is not closable.'); } /** * {@inheritdoc} */ public function detach() { return null; } /** * {@inheritdoc} */ public function getSize(): ?int { return null; } /** * {@inheritdoc} */ public function tell(): int { return 0; } /** * {@inheritdoc} */ public function eof(): bool { return true; } /** * {@inheritdoc} */ public function isSeekable(): bool { return false; } /** * {@inheritdoc} */ public function seek($offset, $whence = SEEK_SET): void { throw new RuntimeException('A NonBufferedBody is not seekable.'); } /** * {@inheritdoc} */ public function rewind(): void { throw new RuntimeException('A NonBufferedBody is not rewindable.'); } /** * {@inheritdoc} */ public function isWritable(): bool { return true; } /** * {@inheritdoc} */ public function write($string): int { $buffered = ''; while (0 < ob_get_level()) { $buffered = ob_get_clean() . $buffered; } echo $buffered . $string; flush(); return strlen($string) + strlen($buffered); } /** * {@inheritdoc} */ public function isReadable(): bool { return false; } /** * {@inheritdoc} */ public function read($length): string { throw new RuntimeException('A NonBufferedBody is not readable.'); } /** * {@inheritdoc} */ public function getContents(): string { return ''; } /** * {@inheritdoc} */ public function getMetadata($key = null): ?array { return null; } }