登录Symfony2后运行控制台命令后台

时间:2013-08-07 14:10:16

标签: php symfony process controller listener

我想在登录后运行自定义symfony2控制台命令后台。我创建一个监听器并尝试使用该进程在后台运行该命令,但该功能不能正常工作。 这是我的代码

class LoginListener
{
    protected $doctrine;
    private $RecommendJobService;
    public function __construct(Doctrine $doctrine)
    {
        $this->doctrine = $doctrine;
    }

    public function onLogin(InteractiveLoginEvent $event)
    {
        $user = $event->getAuthenticationToken()->getUser();

        if($user)
        {
        $process = new Process('ls -lsa');
        $process->start(function ($type, $buffer) {
                $command = $this->RecommendJobService;
                $input = new ArgvInput();
                $output = new ConsoleOutput();
                $command->execute($input, $output);
                echo "1";

        });
        }
    }
    public function setRecommendJobService($RecommendJobService) {
      $this->RecommendJobService = $RecommendJobService;
    }
}

我的代码有问题吗?感谢帮忙。

1 个答案:

答案 0 :(得分:1)

您需要从匿名函数中访问的任何变量都必须使用use语句。由于范围的原因,这可能会引发冲突。

$that = $this;
$process->start(function ($type, $buffer) use ($that) {
    $command = $that->RecommendJobService;
    $input = new ArgvInput();
    $output = new ConsoleOutput();
    $command->execute($input, $output);
    echo "1";
});

此外,您可以使用匿名函数并在start()方法之外进行测试。

$closure = function ($type, $buffer) use ($that) {
    $command = $that->RecommendJobService;
    $input = new ArgvInput();
    $output = new ConsoleOutput();
    $command->execute($input, $output);
    echo "1";
};
$closure();

然后你可以在那里进行一些调试,看看它是否运行。我不确定echo是否是处理控制台的好方法。我建议使用Monolog或$output->writeln($text);命令。