You are here

public function Request::getTotalSize in One Click Upload 7.2

Get total file size in bytes

Return value

int|null

Overrides RequestInterface::getTotalSize

1 call to Request::getTotalSize()
FustyRequest::__construct in flowphp/src/Flow/FustyRequest.php
Constructor

File

flowphp/src/Flow/Request.php, line 68

Class

Request

Namespace

Flow

Code

public function getTotalSize() {
  return $this
    ->getParam('flowTotalSize');
}