當前位置: 首頁>>代碼示例>>PHP>>正文


PHP General::deleteDirectory方法代碼示例

本文整理匯總了PHP中General::deleteDirectory方法的典型用法代碼示例。如果您正苦於以下問題:PHP General::deleteDirectory方法的具體用法?PHP General::deleteDirectory怎麽用?PHP General::deleteDirectory使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在General的用法示例。


在下文中一共展示了General::deleteDirectory方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: update

 public function update($previousVersion = false)
 {
     try {
         $this->meetDependencies();
     } catch (Exception $e) {
         $this->showAlertIfPossible($e);
     }
     if (version_compare($previousVersion, '1.4', '<')) {
         Symphony::Configuration()->remove('fl_driver', 'frontend_localisation');
         Symphony::Configuration()->set('lang_codes', '', 'frontend_localisation');
         Symphony::Configuration()->set('main_lang', '', 'frontend_localisation');
         $ref_lang = Symphony::Configuration()->get('reference_language', 'frontend_localisation');
         Symphony::Configuration()->set('ref_lang', $ref_lang, 'frontend_localisation');
         $consolidate = Symphony::Configuration()->get('consolidate_translations', 'frontend_localisation');
         Symphony::Configuration()->set('consolidate', $consolidate, 'frontend_localisation');
     }
     if (version_compare($previousVersion, '2.0', '<')) {
         General::deleteDirectory(WORKSPACE . Symphony::Configuration()->get('translation_path', 'frontend_localisation'));
         try {
             Symphony::Database()->query("ALTER TABLE `tbl_pages` DROP `translations`");
         } catch (Exception $e) {
         }
     }
 }
開發者ID:siimsoni,項目名稱:frontend_localisation,代碼行數:24,代碼來源:extension.driver.php

示例2: preg_replace

$clean_url = preg_replace(array('/\\/{2,}/i', '/install$/i'), array('/', null), $clean_url);
$clean_url = rtrim($clean_url, '/\\');
define('DOMAIN', $clean_url);
$clean_path = rtrim(dirname(__FILE__), '/\\');
$clean_path = preg_replace(array('/\\/{2,}/i', '/install$/i'), array('/', null), $clean_path);
$clean_path = rtrim($clean_path, '/\\');
define('DOCROOT', $clean_path);
// Required boot components
define('VERSION', '2.6.4');
define('INSTALL', DOCROOT . '/install');
// Include autoloader:
require_once DOCROOT . '/vendor/autoload.php';
// Include the boot script:
require_once DOCROOT . '/symphony/lib/boot/bundle.php';
define('INSTALL_LOGS', MANIFEST . '/logs');
define('INSTALL_URL', URL . '/install');
// If prompt to remove, delete the entire `/install` directory
// and then redirect to Symphony
if (isset($_GET['action']) && $_GET['action'] == 'remove') {
    General::deleteDirectory(INSTALL);
    redirect(SYMPHONY_URL);
}
// If Symphony is already installed, run the updater
if (file_exists(CONFIG)) {
    // System updater
    $script = Updater::instance();
} else {
    // System installer
    $script = Installer::instance();
}
return $script->run();
開發者ID:jurajkapsz,項目名稱:symphony-2,代碼行數:31,代碼來源:index.php

示例3: uninstall

 public function uninstall()
 {
     return General::deleteDirectory(WORKSPACE . '/indecent/');
 }
開發者ID:brendo,項目名稱:indecent,代碼行數:4,代碼來源:extension.driver.php

示例4: uninstall

 public function uninstall()
 {
     General::deleteDirectory(WORKSPACE . '/jit-image-manipulation');
     return $this->disable();
 }
開發者ID:davjand,項目名稱:codecept-symphonycms-db,代碼行數:5,代碼來源:extension.driver.php

示例5: download

 private function download()
 {
     // create the Gateway object
     $gateway = new Gateway();
     // set our url
     $gateway->init($this->downloadUrl);
     // get the raw response, ignore errors
     $response = @$gateway->exec();
     if (!$response) {
         throw new Exception(__("Could not read from %s", array($this->downloadUrl)));
     }
     // write the output
     $tmpFile = MANIFEST . '/tmp/' . Lang::createHandle($this->extensionHandle);
     if (!General::writeFile($tmpFile, $response)) {
         throw new Exception(__("Could not write file."));
     }
     // open the zip
     $zip = new ZipArchive();
     if (!$zip->open($tmpFile)) {
         General::deleteFile($tmpFile, true);
         throw new Exception(__("Could not open downloaded file."));
     }
     // get the directory name
     $dirname = $zip->getNameIndex(0);
     // extract
     $zip->extractTo(EXTENSIONS);
     $zip->close();
     // delete tarbal
     General::deleteFile($tmpFile, false);
     // prepare
     $curDir = EXTENSIONS . '/' . $dirname;
     $toDir = $this->getDestinationDirectory();
     // delete current version
     if (!General::deleteDirectory($toDir)) {
         throw new Exception(__('Could not delete %s', array($toDir)));
     }
     // rename extension folder
     if (!@rename($curDir, $toDir)) {
         throw new Exception(__('Could not rename %s to %s', array($curDir, $toDir)));
     }
 }
開發者ID:hotdoy,項目名稱:EDclock,代碼行數:41,代碼來源:content.download.php


注:本文中的General::deleteDirectory方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。