__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| MessageInterface.php | File | 6.82 KB | 0644 |
|
| RequestFactoryInterface.php | File | 499 B | 0644 |
|
| RequestInterface.php | File | 4.75 KB | 0644 |
|
| ResponseFactoryInterface.php | File | 546 B | 0644 |
|
| ResponseInterface.php | File | 2.57 KB | 0644 |
|
| ServerRequestFactoryInterface.php | File | 927 B | 0644 |
|
| ServerRequestInterface.php | File | 9.91 KB | 0644 |
|
| StreamFactoryInterface.php | File | 1.38 KB | 0644 |
|
| StreamInterface.php | File | 4.69 KB | 0644 |
|
| UploadedFileFactoryInterface.php | File | 1.08 KB | 0644 |
|
| UploadedFileInterface.php | File | 4.61 KB | 0644 |
|
| UriFactoryInterface.php | File | 325 B | 0644 |
|
| UriInterface.php | File | 12.39 KB | 0644 |
|
| autoload.php | File | 1.03 KB | 0644 |
|
| factory-autoload.php | File | 1.11 KB | 0644 |
|