了解了 ponctual 调试的问题,您可以随时使用echo
或打印调试消息var_dump
如果您打算在没有 Symfony 应用程序的情况下使用带有全局调试消息的命令,这里有一种方法可以做到这一点。
Symfony 提供 3 种不同OutputInterface
的
调试到文件
这样做,每当您调用$output->writeln()
命令时,它都会在/path/to/debug/file.log
use Symfony\Component\Console\Output\StreamOutput;
use Symfony\Component\Console\Input\ArrayInput;
use Acme\FooBundle\Command\MyCommand;
$params = array();
$input = new ArrayInput($params);
$file = '/path/to/debug/file.log';
$handle = fopen($file, 'w+');
$output = new StreamOutput($handle);
$command = new MyCommand;
$command->run($input, $output);
fclose($handle);
在控制台中调试
它是相同的过程,只是你ConsoleOutput
改用
use Symfony\Component\Console\Output\ConsoleOutput;
use Symfony\Component\Console\Input\ArrayInput;
use Acme\FooBundle\Command\MyCommand;
$params = array();
$input = new ArrayInput($params);
$output = new ConsoleOutput();
$command = new MyCommand;
$command->run($input, $output);
无需调试
不会打印任何消息
use Symfony\Component\Console\Output\NullOutput;
use Symfony\Component\Console\Input\ArrayInput;
use Acme\FooBundle\Command\MyCommand;
$params = array();
$input = new ArrayInput($params);
$output = new NullOutput();
$command = new MyCommand;
$command->run($input, $output);