Nette\Http\FileUpload::getSize PHP Метод

getSize() публичный Метод

Returns the size of an uploaded file.
public getSize ( ) : integer
Результат integer
    public function getSize()
    {
        return $this->size;
    }

Usage Example

Пример #1
0
 public function __construct(FileUpload $file)
 {
     if (!$file->isImage()) {
         throw new NotImageUploadedException();
     }
     $this->id = Uuid::uuid4();
     $pathInfo = pathinfo($file->getSanitizedName());
     if (!isset($pathInfo['extension'])) {
         throw new FileNameException('Filename must have extension');
     }
     $this->extension = $pathInfo['extension'];
     $this->originalName = $pathInfo['filename'];
     $imgSize = $file->getImageSize();
     $this->width = $imgSize[0];
     $this->height = $imgSize[1];
     $this->fileSize = $file->getSize();
     $this->uploadedAt = new \DateTime('now');
 }
All Usage Examples Of Nette\Http\FileUpload::getSize