我在Symfony2中有一些控制台命令,我需要从一个带有一些参数的命令执行一个命令。
成功执行第二个命令后,我需要得到结果(例如数组),而不是显示输出。
我该怎么做?
答案 0 :(得分:25)
Here您可以在命令中使用基本命令。第二个命令的输出可以是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));
}
答案 1 :(得分:22)
你必须在arguments数组中传递命令,并避免doctrine中的确认对话框:fixtures:load你必须通过--append而不是--force
$arguments = array(
'command' => 'doctrine:fixtures:load',
//'--append' => true
''
);
或者它将失败并显示错误消息“参数不足。”
答案 2 :(得分:11)
有一个名为BufferedOutput
的新输出类(截至v2.4.0)。
这是一个非常简单的类,它将在调用方法fetch
时返回并清除缓冲的输出:
$output = new BufferedOutput();
$input = new ArrayInput($arguments);
$code = $command->run($input, $output);
if($code == 0) {
$outputText = $output->fetch();
echo $outputText;
}
答案 3 :(得分:3)
我做了以下
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;
¡它有效!
答案 4 :(得分:0)
我理解它的旧帖子及以上答案通过一些挖掘来解决问题。在Symfony2.7中,我有点问题使它工作,所以有了上面的建议,我挖了一点,并在这里编译了完整的答案。希望它对某人有用。
答案 5 :(得分:0)
作为 Onema's answer 的更新,在 Symphony 3.4.x(由 Drupal 8 使用)中,
setAutoExit(false)
,int(0)
。这是我用来在 php 中为 Drupal 8.8 项目编写 composer 命令脚本的更新示例。这会以 json 形式获取所有 Composer 包的列表,然后将其解码为一个 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's hint 的帮助下,Google 为我找到了其余的解决方案here。