yii\mongodb\file\Download::getSize PHP Method

getSize() public method

Returns the size of the associated file.
public getSize ( ) : integer
return integer file size.
    public function getSize()
    {
        $document = $this->getDocument();
        if (isset($document['length'])) {
            return $document['length'];
        }
        return 0;
    }