laravel新建一条命令

本文介绍如何在 Laravel 中创建一个名为 ESinit 的自定义 Artisan 命令,该命令用于初始化 Laravel 项目的 Elasticsearch 功能。通过执行特定的 PHP Artisan 命令,可以在指定的目录中生成对应的 PHP 文件,并在 Kernel 类中注册此命令。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.执行命令 php artisan make:command 命令的名字,eg:
php artisan make:command ESinit

2.会在 app\Console\Commands\目录下创建 ESinit.php

class ESinit extends Command
{
    /**
     * The name and signature of the console command.
     * 这是命令的名字
     * @var string
     */
    //protected $signature = 'command:name';
    protected $signature = 'es:init';

    /**
     * The console command description.
     * 命令的描述
     * @var string
     */
    //protected $description = 'Command description';
    protected $description = 'init laravel es for post';

    /**
     * Create a new command instance.
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * 在这里写实际要做的事情
     * Execute the console command.
     * @return mixed
     */
    public function handle()
    {
        //todo
    }
}

3.在 app\Console\Kernel.php 里

    protected $commands = [
        \App\Console\Commands\ESinit::class
    ];

    PS:注意,这里一定要从app开始写起,否则无效
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值