1.在Console/Commands 脚本文件中,handle()方法里给命令行在执行中的提示
$this->line() 简单的输出(白色)
$this->info() 绿色输出,可代表完成
$this->error() 红色的输出,可代表抛错
2.关于try catch使用
try{
throw new Exception('出错');
throw new OtherException('出错');
}catch(\Exception $e){
return $e->getMessage();
}catch(\OtherException $e){
return $e->getMessage();
}