0
運行symfony的動作我創建了一個自定義命令:與自定義命令
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
。沒有服務,只需運行瀏覽器等操作即可。
你能解釋一下你的最終目標是什麼嗎? – 2012-08-17 12:44:45