gpt4 book ai didi

Symfony2 自定义控制台命令

转载 作者:行者123 更新时间:2023-12-04 18:08:58 25 4
gpt4 key购买 nike

我对 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.

如有任何帮助,我们将不胜感激。

最佳答案

你的命令名称是maintenance:greet,所以尝试用php app/console maintenance:greet test调用它

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

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

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