yii\mongodb\file\StreamWrapper::stream_close PHP 메소드

stream_close() 공개 메소드

This method is called in response to fclose().
또한 보기: fclose()
public stream_close ( )
    public function stream_close()
    {
        if ($this->upload !== null) {
            $this->upload->complete();
            $this->upload = null;
        }
        if ($this->download !== null) {
            $this->download = null;
        }
    }