Laravel:アーティストの使用

1285 ワード

アーティストコマンドを使って直接実行する方法
1.php arsian makeを使う:Commandファイル名
es:

php artisan make:Command test
ファイルを作成します
2.handel方法で操作する具体的な業務を呼び出します. 
修正$signature
eg:
 $signature='test:test'
そしてコマンドを実行します 
php artisan test:test(  $signature)
 
実行するコマンドにパラメータが必要な場合は、かっこを追加してパラメータを追加します.
    eg:
 $signature='test:test{uid}'

     eg:
 $signature='test:test{uid}{name}'
実行コマンド:
    eg:
php artisan test:test 1

    eg:
php artisan test:test 1 lisa