使用输入
// With definition "password:reset {userId}"
php artisan password:reset 5
// $this->arguments() returns this array
[
"command": "password:reset",
"userId": "5",
]
// $this->argument('userId') returns this string
"5"// With definition "password:reset {--userId=}"
php artisan password:reset --userId=5
// $this->options() returns this array
[
"userId" => "5",
"help" => false,
"quiet" => false,
"verbose" => false,
"version" => false,
"ansi" => false,
"no-ansi" => false,
"no-interaction" => false,
"env" => null,
]
// $this->option('userId') returns this string
"5"Last updated