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


PHP FileBackend::parentStoragePath方法代码示例

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


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

示例1: tearDown

 protected function tearDown()
 {
     $this->repo->cleanupBatch($this->createdFiles);
     // delete files
     foreach ($this->createdFiles as $tmp) {
         // delete dirs
         $tmp = $this->repo->resolveVirtualUrl($tmp);
         while ($tmp = FileBackend::parentStoragePath($tmp)) {
             $this->repo->getBackend()->clean(array('dir' => $tmp));
         }
     }
     parent::tearDown();
 }
开发者ID:nischayn22,项目名称:mediawiki-core,代码行数:13,代码来源:StoreBatchTest.php

示例2: testParentStoragePath

 /**
  * @dataProvider provider_testParentStoragePath
  */
 public function testParentStoragePath($path, $res)
 {
     $this->assertEquals($res, FileBackend::parentStoragePath($path), "FileBackend::parentStoragePath on path '{$path}'");
 }
开发者ID:nischayn22,项目名称:mediawiki-core,代码行数:7,代码来源:FileBackendTest.php

示例3: deleteFiles

 /**
  * Delete the specified files, if they exist.
  * @param array $files Full paths to files to delete.
  */
 private static function deleteFiles($files)
 {
     $backend = RepoGroup::singleton()->getLocalRepo()->getBackend();
     foreach ($files as $file) {
         $backend->delete(array('src' => $file), array('force' => 1));
     }
     foreach ($files as $file) {
         $tmp = FileBackend::parentStoragePath($file);
         while ($tmp) {
             if (!$backend->clean(array('dir' => $tmp))->isOK()) {
                 break;
             }
             $tmp = FileBackend::parentStoragePath($tmp);
         }
     }
 }
开发者ID:huatuoorg,项目名称:mediawiki,代码行数:20,代码来源:NewParserTest.php

示例4: deleteFiles

 /**
  * Delete the specified files and their parent directories
  * @param array $files File backend URIs mwstore://...
  */
 private function deleteFiles($files)
 {
     // Delete the files
     $backend = RepoGroup::singleton()->getLocalRepo()->getBackend();
     foreach ($files as $file) {
         $backend->delete(['src' => $file], ['force' => 1]);
     }
     // Delete the parent directories
     foreach ($files as $file) {
         $tmp = FileBackend::parentStoragePath($file);
         while ($tmp) {
             if (!$backend->clean(['dir' => $tmp])->isOK()) {
                 break;
             }
             $tmp = FileBackend::parentStoragePath($tmp);
         }
     }
 }
开发者ID:paladox,项目名称:mediawiki,代码行数:22,代码来源:ParserTestRunner.php

示例5: recursiveClean

 private function recursiveClean($dir)
 {
     do {
         if (!$this->backend->clean(array('dir' => $dir))->isOK()) {
             break;
         }
     } while ($dir = FileBackend::parentStoragePath($dir));
 }
开发者ID:Tjorriemorrie,项目名称:app,代码行数:8,代码来源:FileBackendTest.php


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