我创建了一个自定义命令:
class CrawlCommand extends ContainerAwareCommand{
protected function configure(){
$this->setName('crawler:crawl')
->setDescription('Command for crawling content');
}
protected function execute(InputInterface $input, OutputInterface $output){
$msg = 'hello';
$output->writeln($msg);
}
}
请告诉我,如何在执行功能中执行操作?行动呼吁CrawlerBundle:Index:index
。没有服务,只需像浏览器一样运行操作。