从helper类将输出写入控制台

时间:2016-06-06 13:08:09

标签: php laravel laravel-5.1 artisan

我有一个运行辅助类的控制台命令,我想从助手类向控制台写入带有$this->info()的输出。

我的代码如下所示:

App/Http/Console/Commands/SomeCommand.php

function handle(Helper $helper)
{
    return $helper->somefunction();
}

App/Http/SomeHelper.php

function somefunction()
{
    //some code
    $this->info('send to console');
}

有没有办法从助手将输出写入控制台?

3 个答案:

答案 0 :(得分:2)

我终于弄清楚了(在Laravel 5.6中工作)

在您的 SomeCommand 类的handle()函数中,添加$this->myHelper->setConsoleOutput($this->getOutput());

在您的帮助程序类中,添加:

/**
 *
 * @var \Symfony\Component\Console\Style\OutputStyle 
 */
protected $consoleOutput;

/**
 * 
 * @param \Symfony\Component\Console\Style\OutputStyle $consoleOutput
 * @return $this
 */
public function setConsoleOutput($consoleOutput) {
    $this->consoleOutput = $consoleOutput;
    return $this;
}

/**
 * 
 * @param string $text
 * @return $this
 */
public function writeToOuput($text) {
    if ($this->consoleOutput) {
        $this->consoleOutput->writeln($text);
    }
    return $this;
}

/**
 * 
 * @param string $text
 * @return $this
 */
public function writeErrorToOuput($text) {
    if ($this->consoleOutput) {
        $style = new \Symfony\Component\Console\Formatter\OutputFormatterStyle('white', 'red', ['bold']); //white text on red background
        $this->consoleOutput->getFormatter()->setStyle('error', $style);
        $this->consoleOutput->writeln('<error>' . $text . '</error>');
    }
    return $this;
}

然后,在助手类中的其他任何地方,您都可以使用:

$this->writeToOuput('Here is a string that I want to show in the console.');

答案 1 :(得分:1)

您需要在SomeCommand.php文件中写入$this->info('send to console');。对于写入输出,请遵循此https://laravel.com/docs/5.2/artisan#writing-output

答案 2 :(得分:-3)

我没试过,但也许:=SUM(C6*D6;E6*F6;G6*H6;I6*J6;K6*L6;M6*N6;O6*P6;Q6*R6;S6*T6;U6*V6)/INDEX(FREQUENCY((C6*D6;E6*F6;G6*H6;I6*J6;K6*L6;M6*N6;O6*P6;Q6*R6;S6*T6;U6*V6);0);2)