本文整理匯總了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;
}