我在 Symfony2 中有一些控制台命令,我需要使用一些参数从另一个命令执行一个命令。
成功执行第二个命令后,我需要获取结果(例如数组),而不是显示输出。
我怎样才能做到这一点?
在这里,您可以在命令中包含基本命令。第二个命令的输出可以是 json,然后您只需解码输出 json 即可检索您的数组。
$command = $this->getApplication()->find('doctrine:fixtures:load');
$arguments = array(
//'--force' => true
''
);
$input = new ArrayInput($arguments);
$returnCode = $command->run($input, $output);
if($returnCode != 0) {
$text .= 'fixtures successfully loaded ...';
$output = json_decode(rtrim($output));
}
您必须在参数数组中传递命令,并且要避免在教义:fixtures:load 中出现确认对话框,您必须传递 --append 而不是 --force
$arguments = array(
'command' => 'doctrine:fixtures:load',
//'--append' => true
''
);
否则它将失败并显示错误消息“没有足够的参数”。</p>
有一个名为的新输出类(从v2.4.0开始)BufferedOutput
。
这是一个非常简单的类,它会在fetch
调用方法时返回并清除缓冲的输出:
$output = new BufferedOutput();
$input = new ArrayInput($arguments);
$code = $command->run($input, $output);
if($code == 0) {
$outputText = $output->fetch();
echo $outputText;
}
我做了以下
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Output\StreamOutput;
$tmpFile = tmpfile();
$output = new StreamOutput($tmpFile);
$input = new ArrayInput(array(
'parameter' => 'value',
));
$command = . . .
$command->run($input, $output);
fseek($tmpFile, 0);
$output = fread($tmpFile, 1024);
fclose($tmpFile);
echo $output;
有用!
作为Onema 答案的更新,在 Symfony 3.4.x(由 Drupal 8 使用)中,
setAutoExit(false)
,int(0)
如果成功,该命令将返回。这是我用于在 php 中为 Drupal 8.8 项目编写composer命令的更新示例。这将获取所有作曲家包的列表作为 json,然后将其解码为 php 对象。
<?php
require __DIR__.'/vendor/autoload.php';
use Symfony\Component\Console\Output\BufferedOutput;
use Symfony\Component\Console\Input\ArrayInput;
use Composer\Console\Application;
$input = new ArrayInput([
'command' => 'show',
'--format'=>'json',
]);
$output = new BufferedOutput();
$application = new Application();
// required to use BufferedOutput()
$application->setAutoExit(false);
// composer package list, formatted as json, will be barfed into $output
$status = $application->run($input, $output);
if($status === 0) {
// grab the output from the $output buffer
$json = $output->fetch();
// decode the json string into an object
$list = json_decode($json);
// Profit!
print_r($list);
}
?>
输出将是这样的:
stdClass Object
(
[installed] => Array
(
... omitted ...
[91] => stdClass Object
(
[name] => drupal/core
[version] => 8.9.12
[description] => Drupal is an open source content management platform powering millions of websites and applications.
)
... omitted ...
)
)
在Onema 的提示的帮助下,谷歌在这里为我找到了其余的解决方案。
我知道这是旧帖子,上面的答案通过一些挖掘解决了这个问题。在 Symfony2.7 中,我在使它工作时遇到了一点问题,所以根据上述建议,我挖了一点,并在这里编译了完整的答案。希望它对某人有用。