答案 0 :(得分:2)
我相信您正在寻找:
$output = new \Symfony\Component\Console\Output\ConsoleOutput(2);
$output->writeln('This is the result: ', $result);
答案 1 :(得分:0)
尝试一下
$this->info('This is the result: ');
dump($result);
您可以将dump()
用于打印打印对象
答案 2 :(得分:0)
顺便说一句,您知道您可以在双引号内包含变量以输出php的第一件事。
$this->info("This is the result: {$result}")