public function UploadedFile::getClientSize in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/File/UploadedFile.php \Symfony\Component\HttpFoundation\File\UploadedFile::getClientSize()
Returns the file size.
It is extracted from the request from which the file has been uploaded. Then it should not be considered as a safe value.
Return value
int|null The file size
File
- vendor/
symfony/ http-foundation/ File/ UploadedFile.php, line 176
Class
- UploadedFile
- A file uploaded through a form.
Namespace
Symfony\Component\HttpFoundation\FileCode
public function getClientSize() {
return $this->size;
}