当前位置: 首页>>代码示例>>PHP>>正文


PHP zip_close函数代码示例

本文整理汇总了PHP中zip_close函数的典型用法代码示例。如果您正苦于以下问题:PHP zip_close函数的具体用法?PHP zip_close怎么用?PHP zip_close使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了zip_close函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: unpackZip

function unpackZip($file, $dir)
{
    if ($zip = zip_open(getcwd() . $file)) {
        if ($zip) {
            while ($zip_entry = zip_read($zip)) {
                if (zip_entry_open($zip, $zip_entry, "r")) {
                    $buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
                    $dir_name = dirname(zip_entry_name($zip_entry));
                    if ($dir_name == "." || !is_dir($dir_name)) {
                        $dir_op = $dir;
                        foreach (explode("/", $dir_name) as $k) {
                            $dir_op = $dir_op . $k;
                            if (is_file($dir_op)) {
                                unlink($dir_op);
                            }
                            if (!is_dir($dir_op)) {
                                mkdir($dir_op);
                            }
                            $dir_op = $dir_op . "/";
                        }
                    }
                    $fp = fopen($dir . zip_entry_name($zip_entry), "w");
                    fwrite($fp, $buf);
                    zip_entry_close($zip_entry);
                } else {
                    return false;
                }
            }
            zip_close($zip);
        }
    } else {
        return false;
    }
    return true;
}
开发者ID:mamogmx,项目名称:praticaweb-alghero,代码行数:35,代码来源:stp.crea_doc.php

示例2: read_docx

 private function read_docx()
 {
     $striped_content = '';
     $content = '';
     $zip = zip_open($this->filename);
     if (!$zip || is_numeric($zip)) {
         return false;
     }
     while ($zip_entry = zip_read($zip)) {
         if (zip_entry_open($zip, $zip_entry) == FALSE) {
             continue;
         }
         if (zip_entry_name($zip_entry) != "word/document.xml") {
             continue;
         }
         $content .= zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
         zip_entry_close($zip_entry);
     }
     // end while
     zip_close($zip);
     $content = str_replace('</w:r></w:p></w:tc><w:tc>', " ", $content);
     $content = str_replace('</w:r></w:p>', "\r\n", $content);
     $striped_content = strip_tags($content);
     return $striped_content;
 }
开发者ID:roman1970,项目名称:lis,代码行数:25,代码来源:DocxConverter.php

示例3: getLayoutData

function getLayoutData($layout, $fileName, $usage, $install = false)
{
    $output = "";
    $zip = zip_open(($install == false ? 'layouts/' : '../layouts/') . $layout . '.zip');
    if ($zip) {
        while ($zip_entry = zip_read($zip)) {
            $file = basename(zip_entry_name($zip_entry));
            if (zip_entry_open($zip, $zip_entry, 'r')) {
                if ($usage == "include" && strpos($file, $fileName) !== FALSE) {
                    $output = 'phar://layouts/' . $layout . '.zip/' . zip_entry_name($zip_entry);
                }
                if ($usage == "echo") {
                    $buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
                    if (strpos(strval($file), strval($fileName)) !== FALSE) {
                        if (strpos($file, 'settings') !== FALSE) {
                            $output = json_decode($buf, true);
                        } else {
                            $output = $buf;
                        }
                    }
                }
            }
        }
        zip_close($zip);
    }
    return $output;
}
开发者ID:Rydog101,项目名称:MyMods,代码行数:27,代码来源:functions.php

示例4: close

 public function close()
 {
     if (is_resource($this->handler)) {
         zip_close($this->handler);
         $this->handler = NULL;
     }
 }
开发者ID:RenzcPHP,项目名称:3dproduct,代码行数:7,代码来源:zip.php

示例5: testConversion

 /**
  * Test if the Epub conversion works correctly
  *
  * @return void
  */
 public function testConversion()
 {
     $this->epub->setInputFile($this->testInputFile);
     $this->epub->setOutputFile($this->testOutputFile);
     $this->epub->convert();
     $this->assertTrue($this->epub->getStatus());
     $this->assertNotSame(file_get_contents($this->testInputFile), file_get_contents($this->testOutputFile));
     $finfo = finfo_open(FILEINFO_MIME_TYPE);
     $mimeType = finfo_file($finfo, $this->testOutputFile);
     $this->assertSame($mimeType, 'application/epub+zip');
     $epubZip = zip_open($this->testOutputFile);
     $this->assertTrue(is_resource($epubZip));
     $foundContent = false;
     $foundGraphics = false;
     while ($zipDir = zip_read($epubZip)) {
         $zipDirName = zip_entry_name($zipDir);
         if ($zipDirName == $this->expectedContentFile) {
             $foundContent = true;
         }
         if (strpos($zipDirName, $this->expectedGraphicsDir)) {
             $foundGraphics = true;
         }
     }
     zip_close($epubZip);
     $this->assertTrue($foundContent);
     $this->assertTrue($foundGraphics);
 }
开发者ID:anukat2015,项目名称:xmlps,代码行数:32,代码来源:EpubGraphicsTest.php

示例6: parse

 public static function parse($filename)
 {
     $striped_content = '';
     $content = '';
     if (!$filename || !file_exists($filename)) {
         return false;
     }
     $zip = zip_open($filename);
     if (!$zip || is_numeric($zip)) {
         return false;
     }
     while ($zip_entry = zip_read($zip)) {
         if (zip_entry_open($zip, $zip_entry) == FALSE) {
             continue;
         }
         if (zip_entry_name($zip_entry) != "content.xml") {
             continue;
         }
         $content .= zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
         zip_entry_close($zip_entry);
     }
     zip_close($zip);
     $content = str_replace('</w:r></w:p></w:tc><w:tc>', " ", $content);
     $content = str_replace('</w:r></w:p>', "\r\n", $content);
     $striped_content = strip_tags($content);
     return $striped_content;
 }
开发者ID:ellak-monades-aristeias,项目名称:wp-file-search,代码行数:27,代码来源:odt.php

示例7: importAction

 /**
  * This action handles import action.
  *
  * It must be reached by a POST request.
  *
  * Parameter is:
  *   - file (default: nothing!)
  * Available file types are: zip, json or xml.
  */
 public function importAction()
 {
     if (!Minz_Request::isPost()) {
         Minz_Request::forward(array('c' => 'importExport', 'a' => 'index'), true);
     }
     $file = $_FILES['file'];
     $status_file = $file['error'];
     if ($status_file !== 0) {
         Minz_Log::error('File cannot be uploaded. Error code: ' . $status_file);
         Minz_Request::bad(_t('feedback.import_export.file_cannot_be_uploaded'), array('c' => 'importExport', 'a' => 'index'));
     }
     @set_time_limit(300);
     $type_file = $this->guessFileType($file['name']);
     $list_files = array('opml' => array(), 'json_starred' => array(), 'json_feed' => array());
     // We try to list all files according to their type
     $list = array();
     if ($type_file === 'zip' && extension_loaded('zip')) {
         $zip = zip_open($file['tmp_name']);
         if (!is_resource($zip)) {
             // zip_open cannot open file: something is wrong
             Minz_Log::error('Zip archive cannot be imported. Error code: ' . $zip);
             Minz_Request::bad(_t('feedback.import_export.zip_error'), array('c' => 'importExport', 'a' => 'index'));
         }
         while (($zipfile = zip_read($zip)) !== false) {
             if (!is_resource($zipfile)) {
                 // zip_entry() can also return an error code!
                 Minz_Log::error('Zip file cannot be imported. Error code: ' . $zipfile);
             } else {
                 $type_zipfile = $this->guessFileType(zip_entry_name($zipfile));
                 if ($type_file !== 'unknown') {
                     $list_files[$type_zipfile][] = zip_entry_read($zipfile, zip_entry_filesize($zipfile));
                 }
             }
         }
         zip_close($zip);
     } elseif ($type_file === 'zip') {
         // Zip extension is not loaded
         Minz_Request::bad(_t('feedback.import_export.no_zip_extension'), array('c' => 'importExport', 'a' => 'index'));
     } elseif ($type_file !== 'unknown') {
         $list_files[$type_file][] = file_get_contents($file['tmp_name']);
     }
     // Import file contents.
     // OPML first(so categories and feeds are imported)
     // Starred articles then so the "favourite" status is already set
     // And finally all other files.
     $error = false;
     foreach ($list_files['opml'] as $opml_file) {
         $error = $this->importOpml($opml_file);
     }
     foreach ($list_files['json_starred'] as $article_file) {
         $error = $this->importJson($article_file, true);
     }
     foreach ($list_files['json_feed'] as $article_file) {
         $error = $this->importJson($article_file);
     }
     // And finally, we get import status and redirect to the home page
     Minz_Session::_param('actualize_feeds', true);
     $content_notif = $error === true ? _t('feedback.import_export.feeds_imported_with_errors') : _t('feedback.import_export.feeds_imported');
     Minz_Request::good($content_notif);
 }
开发者ID:krisfremen,项目名称:FreshRSS,代码行数:69,代码来源:importExportController.php

示例8: getZipHeaderFilepointer

function getZipHeaderFilepointer($filename, &$MP3fileInfo)
{
    if (!function_exists('zip_open')) {
        $MP3fileInfo['error'] = "\n" . 'Zip functions not available (requires at least PHP 4.0.7RC1 and ZZipLib (http://zziplib.sourceforge.net/) - see http://www.php.net/manual/en/ref.zip.php)';
        return FALSE;
    } else {
        if ($zip = zip_open($filename)) {
            $zipentrycounter = 0;
            while ($zip_entry = zip_read($zip)) {
                $MP3fileInfo['zip']['entries']["{$zipentrycounter}"]['name'] = zip_entry_name($zip_entry);
                $MP3fileInfo['zip']['entries']["{$zipentrycounter}"]['filesize'] = zip_entry_filesize($zip_entry);
                $MP3fileInfo['zip']['entries']["{$zipentrycounter}"]['compressedsize'] = zip_entry_compressedsize($zip_entry);
                $MP3fileInfo['zip']['entries']["{$zipentrycounter}"]['compressionmethod'] = zip_entry_compressionmethod($zip_entry);
                //if (zip_entry_open($zip, $zip_entry, "r")) {
                //	$MP3fileInfo['zip']['entries']["$zipentrycounter"]['contents'] = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
                //	zip_entry_close($zip_entry);
                //}
                $zipentrycounter++;
            }
            zip_close($zip);
            return TRUE;
        } else {
            $MP3fileInfo['error'] = "\n" . 'Could not open file';
            return FALSE;
        }
    }
}
开发者ID:jiminald,项目名称:PHP-Multimedia-Sorter,代码行数:27,代码来源:getid3.zip.php

示例9: GenerateInfos

 function GenerateInfos()
 {
     $zip = zip_open($this->zipFile);
     $folder_count = 0;
     $file_count = 0;
     $unzipped_size = 0;
     $ext_array = array();
     $ext_count = array();
     //$entries_list      = array ();
     $entries_name = array();
     if ($zip) {
         while ($zip_entry = zip_read($zip)) {
             $zip_entry_name = zip_entry_name($zip_entry);
             if (is_dir($zip_entry_name)) {
                 $folder_count++;
             } else {
                 //$entries_list[]=$zip_entry;
                 $entries_name[] = $zip_entry_name;
                 $file_count++;
             }
             $path_parts = pathinfo(zip_entry_name($zip_entry));
             $ext = strtolower(trim(isset($path_parts['extension']) ? $path_parts['extension'] : ''));
             if ($ext != '') {
                 $ext_count[$ext]['count'] = isset($ext_count[$ext]['count']) ? $ext_count[$ext]['count'] : 0;
                 $ext_count[$ext]['count']++;
             }
             $unzipped_size = $unzipped_size + zip_entry_filesize($zip_entry);
         }
     }
     $zipped_size = $this->get_file_size_unit(filesize($this->zipFile));
     $unzipped_size = $this->get_file_size_unit($unzipped_size);
     $zip_info = array("folders" => $folder_count, "files" => $file_count, "zipped_size" => $zipped_size, "unzipped_size" => $unzipped_size, "file_types" => $ext_count, "entries_name" => $entries_name);
     zip_close($zip);
     return $zip_info;
 }
开发者ID:roly445,项目名称:Php-Nuget-Server,代码行数:35,代码来源:zipmanager.php

示例10: unzip

 function unzip($file, $dir = 'unzip/')
 {
     if (!file_exists($dir)) {
         mkdir($dir, 0777);
     }
     $zip_handle = zip_open($file);
     if (is_resource($zip_handle)) {
         while ($zip_entry = zip_read($zip_handle)) {
             if ($zip_entry) {
                 $zip_name = zip_entry_name($zip_entry);
                 $zip_size = zip_entry_filesize($zip_entry);
                 if ($zip_size == 0 && $zip_name[strlen($zip_name) - 1] == '/') {
                     mkdir($dir . $zip_name, 0775);
                 } else {
                     @zip_entry_open($zip_handle, $zip_entry, 'r');
                     $fp = @fopen($dir . $zip_name, 'wb+');
                     @fwrite($fp, zip_entry_read($zip_entry, $zip_size), $zip_size);
                     @fclose($fp);
                     @chmod($dir . $zip_name, 0775);
                     @zip_entry_close($zip_entry);
                 }
             }
         }
         return true;
     } else {
         zip_close($zip_handle);
         return false;
     }
 }
开发者ID:vladimir-g,项目名称:rulinux-engine,代码行数:29,代码来源:admin.class.php

示例11: unzip

function unzip($zipfile)
{
    $zip = zip_open($zipfile);
    while ($zip_entry = zip_read($zip)) {
        zip_entry_open($zip, $zip_entry);
        if (substr(zip_entry_name($zip_entry), -1) == '/') {
            $zdir = substr(zip_entry_name($zip_entry), 0, -1);
            if (file_exists($zdir)) {
                trigger_error('Directory "<b>' . $zdir . '</b>" exists', E_USER_ERROR);
                return false;
            }
            mkdir($zdir);
        } else {
            $name = zip_entry_name($zip_entry);
            if (file_exists($name)) {
                trigger_error('File "<b>' . $name . '</b>" exists', E_USER_ERROR);
                return false;
            }
            $fopen = fopen($name, "w");
            fwrite($fopen, zip_entry_read($zip_entry, zip_entry_filesize($zip_entry)), zip_entry_filesize($zip_entry));
        }
        zip_entry_close($zip_entry);
    }
    zip_close($zip);
    return true;
}
开发者ID:lotcz,项目名称:zshop,代码行数:26,代码来源:zip.php

示例12: unpackInto

 function unpackInto($file_path, $dir_path)
 {
     $zip = zip_open($file_path);
     if (!is_dir($dir_path)) {
         throw new Exception($dir_path . ' should be a directory but isn\'t.');
     }
     if ($zip) {
         while ($zip_entry = zip_read($zip)) {
             zip_entry_open($zip, $zip_entry);
             if (substr(zip_entry_name($zip_entry), -1) == '/') {
                 //this $zip_entry is a directory. create it.
                 $zdir = substr(zip_entry_name($zip_entry), 0, -1);
                 mkdir($dir_path . '/' . $zdir);
             } else {
                 $file = basename(zip_entry_name($zip_entry));
                 $fp = fopen($dir_path . '/' . zip_entry_name($zip_entry), "w+");
                 //echo zip_entry_name($zip_entry);
                 if (zip_entry_open($zip, $zip_entry, "r")) {
                     $buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
                     zip_entry_close($zip_entry);
                 }
                 fwrite($fp, $buf);
                 fclose($fp);
             }
         }
         zip_close($zip);
     }
 }
开发者ID:ingmarschuster,项目名称:MindResearchRepository,代码行数:28,代码来源:ZipSupplFile.php

示例13: read_file_docx

 public function read_file_docx($filename)
 {
     $striped_content = '';
     $content = '';
     if (!$filename || !file_exists($filename)) {
         return false;
     }
     $zip = zip_open($filename);
     if (!$zip || is_numeric($zip)) {
         return false;
     }
     while ($zip_entry = zip_read($zip)) {
         if (zip_entry_open($zip, $zip_entry) == FALSE) {
             continue;
         }
         if (zip_entry_name($zip_entry) != "word/document.xml") {
             continue;
         }
         $content .= zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
         zip_entry_close($zip_entry);
     }
     // end while
     zip_close($zip);
     //echo $content;
     //echo "<hr>";
     //file_put_contents('1.xml', $content);
     $content = str_replace('</w:r></w:p></w:tc><w:tc>', " ", $content);
     $content = str_replace('</w:r></w:p>', "\r\n", $content);
     $striped_content = strip_tags($content);
     return $striped_content;
 }
开发者ID:einnor,项目名称:mailroom,代码行数:31,代码来源:docxreader.php

示例14: version_get

 /**
  * APP版本更新接口
  * @date: 2016年1月10日 下午9:30:33
  *
  * @author : Elliot
  * @param
  *            : none
  * @return :
  */
 public function version_get()
 {
     $dir = 'data';
     $dh = @opendir($dir);
     $return = array();
     while ($file = @readdir($dh)) {
         // 循环读取目录下的文件
         if ($file != '.' and $file != '..') {
             $path = $dir . DIRECTORY_SEPARATOR . $file;
             // 设置目录,用于含有子目录的情况
             if (is_file($path)) {
                 $filetime[] = date("Y-m-d H:i:s", filemtime($path));
                 // 获取文件最近修改日期
                 $return[] = $dir . DIRECTORY_SEPARATOR . $file;
             }
         }
     }
     @closedir($dh);
     // 关闭目录流
     array_multisort($filetime, SORT_DESC, SORT_STRING, $return);
     // 按时间排序
     $file = current($return);
     $zip = zip_open($file);
     if ($zip) {
         while ($zip_entry = zip_read($zip)) {
             if (zip_entry_name($zip_entry) == self::INSTALLPACKETVERSIONFILE && zip_entry_open($zip, $zip_entry, "r")) {
                 $buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
                 zip_entry_close($zip_entry);
             }
         }
         zip_close($zip);
     }
     $result = array('version' => $buf, 'url' => 'http://' . $_SERVER['SERVER_NAME'] . DIRECTORY_SEPARATOR . $file);
     $this->response($result, 200);
 }
开发者ID:asmenglei,项目名称:lanxiao,代码行数:44,代码来源:Restful.php

示例15: unzip

 public function unzip($file)
 {
     $zip = zip_open(realpath(".") . "/" . $file);
     if (!$zip) {
         return "Unable to proccess file '{$file}'";
     }
     $e = '';
     while ($zip_entry = zip_read($zip)) {
         $zdir = dirname(zip_entry_name($zip_entry));
         $zname = zip_entry_name($zip_entry);
         if (!zip_entry_open($zip, $zip_entry, "r")) {
             $e .= "Unable to proccess file '{$zname}'";
             continue;
         }
         if (!is_dir($zdir)) {
             mkdirr($zdir, 0777);
         }
         #print "{$zdir} | {$zname} \n";
         $zip_fs = zip_entry_filesize($zip_entry);
         if (empty($zip_fs)) {
             continue;
         }
         $zz = zip_entry_read($zip_entry, $zip_fs);
         $z = fopen($zname, "w");
         fwrite($z, $zz);
         fclose($z);
         zip_entry_close($zip_entry);
     }
     zip_close($zip);
     return $e;
 }
开发者ID:Alexeykolobov,项目名称:php,代码行数:31,代码来源:System.php


注:本文中的zip_close函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。