gpt4 book ai didi

Symfony2 自定义控制台命令不起作用

转载 作者:行者123 更新时间:2023-12-02 09:48:32 27 4
gpt4 key购买 nike

我在 src/MaintenanceBundle/Command 中创建了一个新类,将其命名为 GreetCommand.php 并在其中放入以下代码:

<?php

namespace SK2\MaintenanceBundle\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 GreetCommand 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);
}
}

?>

并尝试通过

调用它

app/console maintenance:greet Fabien

但我总是收到以下错误:

[InvalidArgumentException] There are no commands defined in the "maintenance" namespace.

有什么想法吗?

最佳答案

我遇到了这个问题,这是因为我的 PHP 类和文件的名称没有以 Command 结尾。

Symfony 将自动注册以 Command 结尾且位于 bundle 的 Command 目录中的命令。如果您想手动注册您的命令,此食谱条目可能会有所帮助:http://symfony.com/doc/current/cookbook/console/commands_as_services.html

关于Symfony2 自定义控制台命令不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7405097/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com