Symfony2自定义控制台命令

时间:2013-10-11 14:50:34

标签: symfony console

我仍然是Symfony的新手。我已经设置了我在我的在线产品组合中编写的一些组件的演示,我希望每两个小时清除一次该演示数据。在我的网络服务器上,我想像这样设置一个cron作业:

php app/console portfolio:wipe

我创建了app / src / MyFreelancer / PortfolioBundle / Command / WipeCommand.php(PortfolioBundle在AppKernel.php中注册),这里是它的内容(完全从http://symfony.com/doc/current/cookbook/console/console_command.html复制并更改了命名空间和命令名称)

<?php
namespace MyFreelancer\PortfolioBundle\Command;

use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
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 WipeCommand extends ContainerAwareCommand
{
    protected function configure()
    {
        $this
            ->setName('maintenance: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);
    }
}
?>

然而,当我跑

php app/console portfolio:wipe test

而不是“Hello test”,我得到了

There are no commands defined in the "portfolio" namespace.

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:1)

您的命令名称为maintenance:greet,因此请尝试使用php app/console maintenance:greet test

进行调用

对于您的cron作业,请不要忘记在调用php app/console之前更改为Symfony2目录。您也可以使用完整路径调用控制台:php /var/www/where/is/symfony/app/console ...