22, 'url' => 'www.baidu.com', 'data' => [ '222', '444', ] ]; $this->data = $data; } /** * Execute the job. * * @return void */ public function handle() { //标记 file_put_contents('charge.txt',json_encode($this->data),8); //处理数据 //传递数据给一个队列 dispatch(new SendDataJob($this->data)); //输出信息 $this->echoMessage(new ConsoleOutput()); } protected function echoMessage(OutputInterface $output) { $output->writeln(json_encode($this->data)); } }