PHPZip\Zip\File\Zip::getZipFile PHP Method

getZipFile() public method

If the zip haven't been finalized yet, this will cause it to become finalized
Author: A. Grandt ([email protected])
public getZipFile ( ) : resource
return resource zip file handle
    public function getZipFile() {
        if (!$this->isFinalized) {
            $this->finalize();
        }

        $this->zipFlush();
        rewind($this->_zipFile);
        return $this->_zipFile;
    }