本文整理汇总了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();
}
示例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);
}
示例3: undeploy
/**
* Откат задачи
*
* @param Dir $dir директория в которой были сохранены откаты
*/
static function undeploy($dir)
{
$f = $dir->getFile('message');
$f->exists() ? io::out(file_get_contents($f)) : null;
}