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


PHP File::rmdir方法代碼示例

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


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

示例1: clean

 private function clean()
 {
     $dirs = glob(APPLICATION_PATH . DS . 'storage' . DS . 'db' . DS . 'caching' . DS . 'expires' . DS . '*');
     foreach ($dirs as $dir) {
         $when = (int) Arrays::last(explode('/', $dir));
         if ($when < time()) {
             $files = glob($dir . DS . '*.db');
             if (!empty($files)) {
                 foreach ($files as $file) {
                     $key = str_replace('.db', '', Arrays::last(explode('/', $file)));
                     $fileToDelete = $this->getFile($key);
                     File::delete($fileToDelete);
                     File::delete($file);
                 }
             }
             File::rmdir($dir);
         }
     }
 }
開發者ID:schpill,項目名稱:standalone,代碼行數:19,代碼來源:Caching.php

示例2: rollback

 public function rollback()
 {
     $target = str_replace('copy.', '', $this->dir);
     File::rmdir($this->dir);
     $this->dir = $target;
 }
開發者ID:schpill,項目名稱:standalone,代碼行數:6,代碼來源:Store.php

示例3: dropTable

 public function dropTable()
 {
     File::rmdir($this->dir);
     return $this;
 }
開發者ID:noikiy,項目名稱:inovi,代碼行數:5,代碼來源:Dbjson.php

示例4: prepare

 private function prepare()
 {
     $results = $collection = [];
     $hash = $this->db->getHash();
     $this->cursor = $this->db->motor()->getPath() . DS . 'cursors' . DS . $hash;
     if (is_dir($this->cursor)) {
         $ageCursor = filemtime($this->cursor . DS . '.');
         $ageDb = $this->db->getAge();
         if ($ageDb < $ageCursor) {
             $this->count = count(glob($this->cursor . DS . '*.php', GLOB_NOSORT));
             return;
         } else {
             File::rmdir($this->cursor);
         }
     }
     File::mkdir($this->db->motor()->getPath() . DS . 'cursors');
     File::mkdir($this->db->motor()->getPath() . DS . 'cursors' . DS . $hash);
     if (empty($this->db->wheres)) {
         $ids = $this->db->motor()->ids('datas');
         foreach ($ids as $id) {
             $results[$id] = [];
         }
         unset($ids);
     } else {
         $results = $this->db->results;
     }
     $this->count = count($results);
     if (empty($results)) {
         File::rmdir($this->cursor);
         return true;
     } else {
         $index = 0;
         foreach ($results as $id => $row) {
             if (false !== $id) {
                 $file = $this->cursor . DS . $index . '.php';
                 $data = $this->db->motor()->read('datas.' . $id);
                 File::put($file, "<?php\nreturn " . var_export($data, 1) . ';');
                 $index++;
             }
         }
     }
 }
開發者ID:schpill,項目名稱:standalone,代碼行數:42,代碼來源:Iterator.php

示例5: reclone

 public function reclone($name = null)
 {
     $name = is_null($name) ? 'clone_' . $this->table : $name;
     File::rmdir(str_replace(DS . $name, DS . $this->table, $this->dir));
     File::cpdir($this->dir, str_replace(DS . $name, DS . $this->table, $this->dir));
     File::rmdir($this->dir);
     return $this;
 }
開發者ID:schpill,項目名稱:standalone,代碼行數:8,代碼來源:Dbjson.php

示例6: drop

 /**
  * [drop description]
  *
  * @method drop
  *
  * @return [type] [description]
  */
 public function drop()
 {
     $dir = $this->store->getDir();
     File::rmdir($dir);
     return true;
 }
開發者ID:schpill,項目名稱:standalone,代碼行數:13,代碼來源:Db.php

示例7: cleanCache

 public static function cleanCache($dir = null)
 {
     $dir = is_null($dir) ? Conf::get('dir.raw.store', STORAGE_PATH . DS . 'raw') : $dir;
     $dirs = glob($dir . DS . '*', GLOB_NOSORT);
     foreach ($dirs as $dir) {
         if (is_dir($dir)) {
             if (fnmatch('*/sessme.*', $dir) || fnmatch('*/me.*', $dir) || fnmatch('*/temporary.*', $dir)) {
                 $age = filemtime($dir);
                 $diff = time() - $age;
                 \Thin\Cli::show("{$diff}", 'INFO');
                 if ($diff > 3600 || fnmatch('*/temporary.*', $dir)) {
                     File::rmdir($dir);
                     \Thin\Cli::show("delete {$dir}", 'COMMENT');
                 }
             }
         }
     }
     $dir = Conf::get('dir.raw.models', APPLICATION_PATH . DS . 'models' . DS . 'Raw') . DS . 'models/temporary';
     File::rmdir($dir);
 }
開發者ID:schpill,項目名稱:standalone,代碼行數:20,代碼來源:Store.php

示例8: flush

 public function flush()
 {
     File::rmdir($this->dir);
     return $this;
 }
開發者ID:schpill,項目名稱:standalone,代碼行數:5,代碼來源:bluzz.php

示例9: cleanCache

 public static function cleanCache($dir = null)
 {
     $dir = is_null($dir) ? STORAGE_PATH . DS . 'store' : $dir;
     $dirs = glob($dir . DS . '*', GLOB_NOSORT);
     foreach ($dirs as $dir) {
         if (is_dir($dir)) {
             if (fnmatch('*/sessme.*', $dir) || fnmatch('*/me.*', $dir) || fnmatch('*/temporary.*', $dir)) {
                 $age = filemtime($dir);
                 $diff = time() - $age;
                 Cli::show("{$diff}", 'INFO');
                 if ($diff > 3600 || fnmatch('*/temporary.*', $dir)) {
                     File::rmdir($dir);
                     Cli::show("delete {$dir}", 'COMMENT');
                 }
             }
         }
     }
 }
開發者ID:schpill,項目名稱:standalone,代碼行數:18,代碼來源:store.php


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