本文主要是介绍laravel框架学习-artisan命令行开发,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
laravel框架学习-artisan命令行开发
简介
artisan,是laravel框架内置的命令行接口。artisan命令行不仅可以提高
项目开发效率,还可以自定义命令行更加的完善项目的功能,是一个非常好用
的组件。
本文主要总结artisan开发自定义命令行。
常见命令
php artisan list 列出所有命令
php artisan help command 查看command命令的帮助
artisan命令行的开发
创建:
自定义命令目录:app/Console/commands/
创建自定义命令:php artisan make:console Commandphp artisan make:condole Command --command=user:assign
注册自定义命令:在app/Console/Kernel.php中注册。例如:protected $commands = ['App\Console\Commands\FooCommand'];
注意:自定义命令也可以手动创建,依样画葫芦即可。注意命名空间。
文件分析:
<?php namespace App\Console\Commands;use Illuminate\Console\Command;use Symfony\Component\Console\Input\InputOption;use Symfony\Component\Console\Input\InputArgument;class LearnArtisan.php extends Command {/*** The console command name.** @var string*///当前命令行的名称。供调用protected $name = 'learn:test';/*** The console command description.** @var string*///当前命令行的描述protected $description = 'Command description.';/*** Create a new command instance.** @return void*/public function __construct(){parent::__construct();}/*** Execute the console command.** @return mixed*///如果调用该命令行,则出动此方法,需要执行的逻辑可放置在此方发中public function fire(){//}/*** Get the console command arguments.** @return array*///定义参数的方法protected function getArguments(){/*return [['example', InputArgument::REQUIRED, 'An example argument.'],];*///其他参数用的较少,需要使用查询手册即可return [['argu', InputArgument::REQUIRED, 'An example argument.'],]}/*** Get the console command options.** @return array*///定义选项的方法protected function getOptions(){/*return [['example', null, InputOption::VALUE_OPTIONAL, 'An example option.', null],];*///其他参数用的较少,需要使用查询手册即可return [['opti', null, InputOption::VALUE_OPTIONAL, 'An example option.', null],}}
调用
php artisan learn:test param --options
这篇关于laravel框架学习-artisan命令行开发的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!