1

我想使用控制台运行任务。我检查了http://symfony.com/doc/2.0/components/console/introduction.html

它要求创建 GreetCommand.php

namespace Acme\DemoBundle\Command;

use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

class GreetCommand extends Command
{
    protected function configure()
    {
        $this
            ->setName('demo:greet')
            ->setDescription('Greet someone')
            ->addArgument(
                'name',
                InputArgument::OPTIONAL,
                'Who do you want to greet?'
            )
            ->addOption(
               'yell',
               null,
               InputOption::VALUE_NONE,
               'If set, the task will yell in uppercase letters'
            )
        ;
    }

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $name = $input->getArgument('name');
        if ($name) {
            $text = 'Hello '.$name;
        } else {
            $text = 'Hello';
        }

        if ($input->getOption('yell')) {
            $text = strtoupper($text);
        }

        $output->writeln($text);
    }
}

并创建另一个文件来运行下面给出的命令。

#!/usr/bin/env php
# app/console
<?php

use Acme\DemoBundle\Command\GreetCommand;
use Symfony\Component\Console\Application;

$application = new Application();
$application->add(new GreetCommand);
$application->run();

但是运行它的命令就像app/console demo:greet Fool

我不明白的是为什么我们需要创建第二个文件?

有时,我觉得 Symfony 是最难学的框架。

4

1 回答 1

2

在第一个文件中,您已经定义了 Command 类。

需要第二个文件来注册/初始化该命令的实例。您只需告诉那里您的应用程序将拥有名称为“demo:greet”的 GreetCommand(名称在命令本身中定义)。

顺便说一句,当您将全栈 Symfony2 与 FrameworkBundle 一起使用时,您不必创建第二个文件(如果我们遵循 Symfony2 约定),因为FrameworkBundle 控制台应用程序使用 HttpKernel 组件自动注册命令

于 2013-03-04T08:15:06.797 回答