PHPZip\Zip\File\Zip::zipFlush PHP Method

zipFlush() public method

Flush Zip Data stored in memory, to a temp file.
Author: A. Grandt ([email protected])
public zipFlush ( )
    public function zipFlush() {
        if (!is_resource($this->_zipFile)) {
            $this->_zipFile = tmpfile();
            fwrite($this->_zipFile, $this->_zipData);
            $this->_zipData = null;
        }
    }