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


PHP dir::clean方法代码示例

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


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

示例1: flush

 static function flush()
 {
     $root = c::get('root.cache');
     if (!is_dir($root)) {
         return $root;
     }
     dir::clean($root);
 }
开发者ID:narrenfrei,项目名称:kirbycms,代码行数:8,代码来源:cache.php

示例2: testClean

 public function testClean()
 {
     dir::make($this->tmpDir);
     f::write($this->tmpDir . DS . 'testfile.txt', '');
     $this->assertTrue(dir::clean($this->tmpDir));
     $files = dir::read($this->tmpDir);
     $this->assertEquals(0, count($files));
     dir::remove($this->tmpDir);
 }
开发者ID:LucasFyl,项目名称:korakia,代码行数:9,代码来源:DirTest.php

示例3: execute

 protected function execute(InputInterface $input, OutputInterface $output)
 {
     if ($this->isInstalled() === false) {
         throw new RuntimeException('Invalid Kirby installation');
     }
     // get the thumbs folder and bootstrap kirby
     $thumbs = $this->kirby()->roots()->thumbs();
     // flush the thumbs folder
     dir::clean($thumbs);
     $output->writeln('<comment>The thumbs folder has been emptied</comment>');
     $output->writeln('');
 }
开发者ID:getkirby,项目名称:cli,代码行数:12,代码来源:Thumbs.php

示例4: removeAccounts

 protected function removeAccounts()
 {
     dir::clean($this->roots->dummy . DS . 'site' . DS . 'accounts');
 }
开发者ID:nsteiner,项目名称:kdoc,代码行数:4,代码来源:testcase.php

示例5: killCache

 static function killCache()
 {
     if (c::get('cache.autoupdate')) {
         return false;
     }
     if (!is_dir(c::get('root.cache'))) {
         return false;
     }
     return dir::clean(c::get('root.cache'));
 }
开发者ID:nilshendriks,项目名称:kirbycms-panel,代码行数:10,代码来源:data.php

示例6: killCache

 static function killCache()
 {
     return dir::clean(c::get('root.cache'));
 }
开发者ID:codecuts,项目名称:lanningsmith-website,代码行数:4,代码来源:data.php

示例7: flush

 /**
  * Flush the entire cache directory
  *
  * @return boolean
  */
 public function flush()
 {
     return dir::clean($this->options['root']);
 }
开发者ID:LucasFyl,项目名称:korakia,代码行数:9,代码来源:file.php


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