class UploadedFile implements UploadedFileInterface (View source)

Generic implementation of the PSR-7 UploadedFileInterface.

Properties

protected string $clientFilename
protected string $clientMediaType
protected int $error
protected null|string $file
protected bool $moved
protected int $size
protected StreamInterface|null $stream

Methods

__construct(StreamInterface|string|resource $streamOrFile, int $size, int $errorStatus, string|null $clientFilename = null, string|null $clientMediaType = null)

No description

setStreamOrFile(string|StreamInterface|resource $streamOrFile)

Depending on the value set file or stream variable

bool
isOk()

Return true if there is no upload error

bool
isMoved()

No description

getStream()

Retrieve a stream representing the uploaded file.

moveTo(string $targetPath)

Move the uploaded file to a new location.

int|null
getSize()

Retrieve the file size.

int
getError()

Retrieve the error associated with the uploaded file.

string|null
getClientFilename()

Retrieve the filename sent by the client.

getClientMediaType()

Retrieve the media type sent by the client.

bool
writeFile(string $path)

Write the uploaded file to the given path.

Details

__construct(StreamInterface|string|resource $streamOrFile, int $size, int $errorStatus, string|null $clientFilename = null, string|null $clientMediaType = null)

No description

Parameters

StreamInterface|string|resource $streamOrFile
int $size
int $errorStatus
string|null $clientFilename
string|null $clientMediaType

protected setStreamOrFile(string|StreamInterface|resource $streamOrFile)

Depending on the value set file or stream variable

Parameters

string|StreamInterface|resource $streamOrFile

Exceptions

InvalidArgumentException

protected bool isOk()

Return true if there is no upload error

Return Value

bool

bool isMoved()

No description

Return Value

bool

getStream()

Retrieve a stream representing the uploaded file.

This method MUST return a StreamInterface instance, representing the uploaded file. The purpose of this method is to allow utilizing native PHP stream functionality to manipulate the file upload, such as stream_copy_to_stream() (though the result will need to be decorated in a native PHP stream wrapper to work with such functions).

If the moveTo() method has been called previously, this method MUST raise an exception.

Exceptions

RuntimeException

moveTo(string $targetPath)

Move the uploaded file to a new location.

Use this method as an alternative to move_uploaded_file(). This method is guaranteed to work in both SAPI and non-SAPI environments. Implementations must determine which environment they are in, and use the appropriate method (move_uploaded_file(), rename(), or a stream operation) to perform the operation.

$targetPath may be an absolute path, or a relative path. If it is a relative path, resolution should be the same as used by PHP's rename() function.

The original file or stream MUST be removed on completion.

If this method is called more than once, any subsequent calls MUST raise an exception.

When used in an SAPI environment where $_FILES is populated, when writing files via moveTo(), is_uploaded_file() and move_uploaded_file() SHOULD be used to ensure permissions and upload status are verified correctly.

If you wish to move to a stream, use getStream(), as SAPI operations cannot guarantee writing to stream destinations.

Parameters

string $targetPath

Path to which to move the uploaded file.

Exceptions

RuntimeException
InvalidArgumentException
RuntimeException

See also

http://php.net/is_uploaded_file
http://php.net/move_uploaded_file

int|null getSize()

Retrieve the file size.

Implementations SHOULD return the value stored in the "size" key of the file in the $_FILES array if available, as PHP calculates this based on the actual size transmitted.

Return Value

int|null

The file size in bytes or null if unknown.

int getError()

Retrieve the error associated with the uploaded file.

The return value MUST be one of PHP's UPLOAD_ERR_XXX constants.

If the file was uploaded successfully, this method MUST return UPLOAD_ERR_OK.

Implementations SHOULD return the value stored in the "error" key of the file in the $_FILES array.

Return Value

int

One of PHP's UPLOAD_ERR_XXX constants.

See also

http://php.net/manual/en/features.file-upload.errors.php

string|null getClientFilename()

Retrieve the filename sent by the client.

Do not trust the value returned by this method. A client could send a malicious filename with the intention to corrupt or hack your application.

Implementations SHOULD return the value stored in the "name" key of the file in the $_FILES array.

Return Value

string|null

The filename sent by the client or null if none was provided.

getClientMediaType()

Retrieve the media type sent by the client.

Do not trust the value returned by this method. A client could send a malicious media type with the intention to corrupt or hack your application.

Implementations SHOULD return the value stored in the "type" key of the file in the $_FILES array.

protected throwExceptionIfNotAccessible()

No description

Exceptions

RuntimeException

protected bool writeFile(string $path)

Write the uploaded file to the given path.

Parameters

string $path

Return Value

bool