setName('cron') ->setDescription('定时数据清理任务'); } protected function execute(Input $input, Output $output) { // 指令输出 Db::name('querycache')->where('uptime','<',date('Y-m-d H:i:s', strtotime('-30 days')))->delete(); $output->writeln('定时数据清理任务执行完毕'); } }