本文整理汇总了PHP中PhpBrew\Config::getPHPReleaseListPath方法的典型用法代码示例。如果您正苦于以下问题:PHP Config::getPHPReleaseListPath方法的具体用法?PHP Config::getPHPReleaseListPath怎么用?PHP Config::getPHPReleaseListPath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PhpBrew\Config
的用法示例。
在下文中一共展示了Config::getPHPReleaseListPath方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: execute
public function execute()
{
$releaseList = new ReleaseList();
$releases = array();
//always fetch list from remote when --old presents, because the local file may not contain the old versions
// and --old is seldom used.
if (!$releaseList->foundLocalReleaseList() || $this->options->update || $this->options->old) {
$fetchTask = new FetchReleaseListTask($this->logger, $this->options);
$releases = $fetchTask->fetch();
} else {
$this->logger->info(sprintf('Read local release list (last update: %s UTC).', gmdate('Y-m-d H:i:s', filectime(Config::getPHPReleaseListPath()))));
$releases = $releaseList->loadLocalReleaseList();
$this->logger->info('You can run `phpbrew update` or `phpbrew known --update` to get a newer release list.');
}
foreach ($releases as $majorVersion => $versions) {
if (version_compare($majorVersion, '5.2', 'le') && !$this->options->old) {
continue;
}
$versionList = array_keys($versions);
if (!$this->options->more) {
array_splice($versionList, 8);
}
$this->logger->writeln($this->formatter->format("{$majorVersion}: ", 'yellow') . wordwrap(implode(', ', $versionList), 80, "\n" . str_repeat(' ', 5)) . (!$this->options->more ? ' ...' : ''));
}
if ($this->options->old) {
$this->logger->warn('phpbrew need php 5.3 or above to run. build/switch to versions below 5.3 at your own risk.');
}
}
示例2: save
public function save()
{
$localFilepath = Config::getPHPReleaseListPath();
$json = json_encode($this->releases, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
if (false === file_put_contents($localFilepath, $json)) {
throw new Exception("Can't store release json file");
}
}