Artisan 控制台

  • -- 参数 如 --email 必须使用 option 或 options获取
protected $signature = 'user:founder {--E|[email protected] : user email} {--Q|password=admin : user password}';
// 使用如下方法获取
$email = $this->option('email');
$password = $this->option('password');
// argument获取不带 `--` 参数的项
$this->argument('user')
  • 使用table方法
// 第二个参数是一个二维数组
$this->table(['email'], [['email'=>$email]]);

你可能感兴趣的:(Artisan 控制台)