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


PHP PclZip::setZipName方法代码示例

本文整理汇总了PHP中PclZip::setZipName方法的典型用法代码示例。如果您正苦于以下问题:PHP PclZip::setZipName方法的具体用法?PHP PclZip::setZipName怎么用?PHP PclZip::setZipName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PclZip的用法示例。


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

示例1: run

 /**
  * Update::run()
  * 
  * @return
  */
 public function run()
 {
     $info = $this->getInfo();
     $this->checkForUpdates();
     if ($this->updateAvailable) {
         /**
          * 8. verificar que exista el archivo update.php
          * 9. importar update.php y ejecutar el proceso
          * */
         $requirements = $this->checkRequirements($info['requirements']);
         if ($requirements) {
             return $requirements;
         }
         $response = $this->handler->fetch($info['url_update']);
         if (isset($response['body']) && $response['successful']) {
             $file_update = $response['body'];
         } else {
             $file_update = $response;
         }
         $file_saved = DIR_ROOT . "updates/update.zip";
         $f = fopen($file_saved, 'wb');
         fwrite($f, $file_update);
         fclose($f);
         echo __LINE__ . ': ' . sha1_file($file_saved) . '===' . $info['checksum'] . '<br />';
         if (file_exists($file_saved) && sha1_file($file_saved) === $info['checksum']) {
             $zip = new PclZip();
             $zip->setZipName($file_saved);
             if ($zip->extract(PCLZIP_OPT_PATH, DIR_ROOT, PCLZIP_OPT_REPLACE_NEWER) > 0) {
                 unlink($file_saved);
                 if (file_exists(DIR_ROOT . 'update.php')) {
                     include_once DIR_ROOT . 'update.php';
                     if (function_exists('upgradeNecoTienda')) {
                         upgradeNecoTienda($this->registry, VERSION);
                     }
                     unlink(DIR_ROOT . 'update.php');
                 }
             } else {
                 return $zip->errorInfo(true);
             }
         } else {
             return false;
         }
     } else {
         //TODO: Ya esta actualizada
     }
 }
开发者ID:josueaponte7,项目名称:necotienda_standalone,代码行数:51,代码来源:update.php


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