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


PHP mageDelTree函數代碼示例

本文整理匯總了PHP中mageDelTree函數的典型用法代碼示例。如果您正苦於以下問題:PHP mageDelTree函數的具體用法?PHP mageDelTree怎麽用?PHP mageDelTree使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: cleanCache

 /**
  * Clean full page cache
  *
  * @return Technooze_Timage_Model_Observer
  */
 public function cleanCache()
 {
     $cacheDir = Mage::getBaseDir('media') . DS . 'catalog' . DS . 'cache';
     mageDelTree($cacheDir);
     @mkdir($cacheDir);
     return $this;
 }
開發者ID:Alex-iFactory,項目名稱:Magento-AdaptiveResize,代碼行數:12,代碼來源:Observer.php

示例2: cleanCache

 /**
  * Clean timage cache
  *
  * @return Technooze_Timage_Model_Observer
  */
 public function cleanCache(Varien_Event_Observer $observer)
 {
     $type = $observer->getType();
     if ($type == 'timage') {
         $cacheDir = Mage::getBaseDir('media') . DS . 'catalog' . DS . 'cache';
         mageDelTree($cacheDir);
         @mkdir($cacheDir);
     }
     return $this;
 }
開發者ID:sergy-gzh,項目名稱:Magento-resize-category-images,代碼行數:15,代碼來源:Observer.php

示例3: mageDelTree

function mageDelTree($path)
{
    if (is_dir($path)) {
        $entries = scandir($path);
        foreach ($entries as $entry) {
            if ($entry != '.' && $entry != '..') {
                mageDelTree($path . DS . $entry);
            }
        }
        @rmdir($path);
    } else {
        @unlink($path);
    }
}
開發者ID:par-orillonsoft,項目名稱:Magento,代碼行數:14,代碼來源:functions.php

示例4: clear

 public function clear()
 {
     $this->registerIncludePath(false);
     if (is_dir($this->_includeDir)) {
         mageDelTree($this->_includeDir);
     }
     return $this;
 }
開發者ID:evinw,項目名稱:project_bloom_magento,代碼行數:8,代碼來源:Process.php

示例5: cleanAllSessions

 /**
  * Deletes all session files
  *
  */
 public function cleanAllSessions()
 {
     if (session_module_name() == 'files') {
         $dir = session_save_path();
         mageDelTree($dir);
     }
     return $this;
 }
開發者ID:mswebdesign,項目名稱:Mswebdesign_Magento_1_Community_Edition,代碼行數:12,代碼來源:App.php

示例6: cleanCache

 /**
  * Cleaning cache
  *
  * @param   array $tags
  * @return  Mage_Core_Model_App
  */
 public function cleanCache($tags = array())
 {
     if (!empty($tags)) {
         $this->getCache()->clean(Zend_Cache::CLEANING_MODE_MATCHING_TAG, $tags);
     } else {
         $useCache = $this->useCache();
         $cacheDir = Mage::getBaseDir('var') . DS . 'cache';
         mageDelTree($cacheDir);
         mkdir($cacheDir, 0777);
         $this->saveCache(serialize($useCache), 'use_cache', array(), null);
     }
     return $this;
 }
開發者ID:arslbbt,項目名稱:mangentovies,代碼行數:19,代碼來源:App.php


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