ThinkPHP创建自定义命令行

本文介绍如何在ThinkPHP中创建并使用命令行操作。主要包括配置command.php文件、建立命令类文件、运行命令帮助及执行具体命令的过程。

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

第一步,配置command.php文件,目录在application/command.php

<?php
return [
    'app\home\command\Test',
];

这里写图片描述
第二步,建立命令类文件,新建application/home/command/Test.php

<?php
namespace app\home\command;
use app\home\model\Test as TestModel;
use think\console\Command;
use think\console\Input;
use think\console\Output;

class Test extends Command
{
    protected function configure()
    {
        $this->setName('test')->setDescription('Here is the remark ');
    }
    protected function execute(Input $input, Output $output)
    {
        $testModel = new TestModel();
        $res = $testModel->index();
//        $output->writeln("TestCommand:".$res);
        var_dump($res);
    }
}

这里写图片描述
这里写图片描述
第三步,测试-命令帮助-命令行下运行(项目根目录)

php think

第四步,运行test命令

php think test
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值