public
|
__construct(
string $path,
string $originalName,
string|null $mimeType = null,
int|null $error = null,
bool $test = false,
)
Accepts the information of the uploaded file as provided by the PHP global $_FILES.
Accepts the information of the uploaded file as provided by the PHP global $_FILES.
The file object is only created when the uploaded file is valid (i.e. when the
isValid() method returns true). Otherwise the only methods that could be called
on an UploadedFile instance are:
- getClientOriginalName,
- getClientMimeType,
- isValid,
- getError.
Calling any other method on an non-valid instance will cause an unpredictable result.
Parameters
$path |
The full temporary path to the file
|
$originalName |
The original file name of the uploaded file
|
$mimeType |
The type of the file as provided by PHP; null defaults to application/octet-stream
|
$error |
The error constant of the upload (one of PHP's UPLOAD_ERR_XXX constants); null defaults to UPLOAD_ERR_OK
|
$test |
Whether the test mode is active
Local files are used in test mode hence the code should not enforce HTTP uploads
|
Throws
Overrides
Overriden by
|
#
|
public
|
guessClientExtension(): ?string
Returns the extension based on the client mime type.
Returns the extension based on the client mime type.
If the mime type is unknown, returns null.
This method uses the mime type as guessed by getClientMimeType()
to guess the file extension. As such, the extension returned
by this method cannot be trusted.
For a trusted extension, use guessExtension() instead (which guesses
the extension based on the guessed mime type for the file).
|
#
|