Jackalope\BinaryStreamWrapper::stream_close PHP 메소드

stream_close() 공개 메소드

Close this stream if it was initialized
public stream_close ( )
    public function stream_close()
    {
        if ($this->stream) {
            fclose($this->stream);
        }
    }