Box\Spout\Writer\AbstractWriter::close PHP 메소드

close() 공개 메소드

Closes the writer. This will close the streamer as well, preventing new data to be written to the file.
public close ( ) : void
리턴 void
    public function close()
    {
        $this->closeWriter();
        if (is_resource($this->filePointer)) {
            $this->globalFunctionsHelper->fclose($this->filePointer);
        }
        $this->isWriterOpened = false;
    }