public function UploadedFileInterface::getError in Auth0 Single Sign On 8.2
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
1 method overrides UploadedFileInterface::getError()
- UploadedFile::getError in vendor/
guzzlehttp/ psr7/ src/ UploadedFile.php
File
- vendor/
psr/ http-message/ src/ UploadedFileInterface.php, line 92
Class
- UploadedFileInterface
- Value object representing a file uploaded through an HTTP request.
Namespace
Psr\Http\MessageCode
public function getError();