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


PHP Dir::getFile方法代码示例

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


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

示例1: RepositoryListException

 /**
  * 
  * @param string absolute path to config file
  */
 function __construct(Dir $path)
 {
     if (!$path->exists()) {
         throw new RepositoryListException('Given path(' . $path . ') not exists.');
     }
     $this->path = $path;
     $this->list = $path->getFile('list.txt');
     $this->createContext();
 }
开发者ID:point,项目名称:cassea,代码行数:13,代码来源:RepositoryList.php

示例2: unpackFile

 /**
  * Распаковывает $archive в указаную папку 
  *
  */
 static function unpackFile(File $archive, Dir $target, $filename)
 {
     if (!$archive->canRead()) {
         throw new PackerException('File archive ' . $archive . ' not readable.');
     }
     if (!$target->canWrite()) {
         throw new PackerException('Target folder ' . $target . ' not writable.');
     }
     $cmd = str_replace(array('{ARCHIVE}', '{DIR}', '{FILE}'), array($archive, $target, $filename), self::$config['unpack_file_template']);
     exec($cmd, $out, $res);
     if ($res) {
         $out[] = PHP_EOL . 'Exit code: ' . $res . PHP_EOL . 'Command: ' . $cmd . PHP_EOL;
         $f = Dir::get(Config::getInstance()->root_dir, true)->getDir(self::$config['logDir'])->getFile('unpackFile_' . basename($archive) . '.log');
         file_put_contents($f, implode(PHP_EOL, $out));
         throw new PackerException('Error while unpacking. Return code: ' . $res . '. Log file stored at ' . $f);
     }
     return $target->getFile($filename);
 }
开发者ID:point,项目名称:cassea,代码行数:22,代码来源:Packer.php

示例3: undeploy

 /**
  * Откат задачи
  *
  * @param Dir $dir директория в которой были сохранены откаты
  */
 static function undeploy($dir)
 {
     $f = $dir->getFile('message');
     $f->exists() ? io::out(file_get_contents($f)) : null;
 }
开发者ID:point,项目名称:cassea,代码行数:10,代码来源:EchoTask.php


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