當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。