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

toString() public method

Returns a string of the bytes in the associated file.
public toString ( ) : string
return string file content.
    public function toString()
    {
        $result = '';
        foreach ($this->getChunkCursor() as $chunk) {
            $result .= $chunk['data']->getData();
        }
        return $result;
    }