data = $data; } /** * Execute the job. * * @return void */ public function handle() { //暂时不用 file_put_contents('record1.txt',json_encode($this->data) . PHP_EOL,8); //输出信息 测试 $this->echoMessage(new ConsoleOutput()); } protected function echoMessage(OutputInterface $output) { $output->writeln($this->data); } }