| 123456789101112131415161718192021222324252627282930313233 | <?phpnamespace PhpOffice\Common\Tests;class TestHelperZip{    public static function assertFileExists($fileZip, $path)    {        $oZip = new \ZipArchive;        if ($oZip->open($fileZip) !== true) {            return false;        }        if ($oZip->statName($path) === false) {            return false;        }        return true;    }    public static function assertFileContent($fileZip, $path, $content)    {        $oZip = new \ZipArchive;        if ($oZip->open($fileZip) !== true) {            return false;        }        $zipFileContent = $oZip->getFromName($path);        if ($zipFileContent === false) {            return false;        }        if ($zipFileContent != $content) {            return false;        }        return true;    }}
 |