yii\mongodb\file\Download::getSize PHP 메소드

getSize() 공개 메소드

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