Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a few console command in Symfony2 and I need to execute one command from another command with some parameters.

After successfull execution of the second command I need to get the result (as an array for example), not the display output.

How can I do that?

share|improve this question

1 Answer

up vote 1 down vote accepted

Here you can have a basic command inside a command. The output from the second command can be a json, then you just have to decode the output json to retrieve your array.

$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));
}
share|improve this answer
What If I use in depended command OutputInterface with the method writeln, so I have a some string and I cannot to decode this. – Igor Timoshenko Jan 21 at 9:25
writeLn just add a newline, I think you just need to trim or rtrim the result. – j0k Jan 21 at 9:30
I do not want parse the result, I am looking another way. Perhaps, I did not understand you. – Igor Timoshenko Jan 21 at 9:36
You trim the output inside the first command, not inside the second one. I've updated my answer. – j0k Jan 21 at 9:42
var_dump($output) from the first command says that is an instance of Symfony\Component\Console\Output\ConsoleOutput. Actually, I expected such result and could not understand you. – Igor Timoshenko Jan 21 at 9:59
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.