ThinkPHP自定义指令

简介: ThinkPHP自定义指令

官网文档

https://www.kancloud.cn/manual/thinkphp6_0/1037651

创建命令类文件

运行指令创建一个自定义命令类文件

php think make:command Hello hello

生成内容如下

<?php
namespace app\command;
use think\console\Command;
use think\console\Input;
use think\console\input\Argument;
use think\console\input\Option;
use think\console\Output;
class Hello extends Command
{
    protected function configure()
    {
        $this->setName('hello')
          ->addArgument('name', Argument::OPTIONAL, "your name")
            ->addOption('city', null, Option::VALUE_REQUIRED, 'city name')
          ->setDescription('Say Hello');
    }
    protected function execute(Input $input, Output $output)
    {
      $name = trim($input->getArgument('name'));
        $name = $name ?: 'thinkphp';
    if ($input->hasOption('city')) {
          $city = PHP_EOL . 'From ' . $input->getOption('city');
        } else {
          $city = '';
        }
        
        $output->writeln("Hello," . $name . '!' . $city);
    }
}

配置config/console.php文件

<?php
return [
    'commands' => [
        'hello' => 'app\command\Hello',
    ]
];

使用命令执行指令

php think hello

在宝塔面板中配置计划任务

常用指令文件

创建表

<?php
declare (strict_types = 1);
namespace app\command;
use think\console\Command;
use think\console\Input;
use think\console\Output;
use think\Exception;
use think\facade\Db;
class CreateTable extends Command
{
    protected function configure()
    {
        // 指令配置
        $this->setName('start')
            ->setDescription('每日创建日志数据表');
    }
    //创建表
    protected function execute(Input $input, Output $output)
    {
        $tableList = [
            'device_log'
        ];
        foreach ($tableList as $tblpre) {
            // 检查今天的表
            $tbldate = date('ymd');
            $res = Db::execute("show tables like '{$tblpre}{$tbldate}'");
            if ($res === 0) {
                $output->writeln('补建今天的表'.$tbldate);
                Db::execute("create table {$tblpre}{$tbldate} like {$tblpre}");
            }
            //创建明天的表
            try {
                $tblnextdate = date('ymd', strtotime('+1 day'));
                $res = Db::execute("show tables like '{$tblpre}{$tblnextdate}'");
                if ($res === 0) {
                    Db::execute("create table {$tblpre}{$tblnextdate} like {$tblpre}");
                    $output->writeln('创建明天的表'.$tblnextdate);
                }
            } catch (Exception $exception) {
                echo $exception->getMessage();
            }
        }
    }
}
相关文章
|
JavaScript 容器
【Vue源码解析】mustache模板引擎
【Vue源码解析】mustache模板引擎
63 0
|
2月前
|
JavaScript 前端开发 开发者
Vue3:快速生成模板代码
Vue3:快速生成模板代码
|
4月前
|
开发框架 监控 JavaScript
基于SqlSugar的开发框架循序渐进介绍(11)-- 使用TypeScript和Vue3的Setup语法糖编写页面和组件的总结
基于SqlSugar的开发框架循序渐进介绍(11)-- 使用TypeScript和Vue3的Setup语法糖编写页面和组件的总结
|
4月前
|
缓存 JavaScript 前端开发
前端框架与库 - Vue.js基础:模板语法、数据绑定
【7月更文挑战第14天】Vue.js 是渐进式框架,以简洁API和高效数据绑定知名。本文聚焦模板语法与数据绑定,解释常见问题和易错点,助力初学者避坑。模板语法中,{{ expression }} 用于渲染值,v-bind/: 用于动态绑定属性。数据绑定涉及文本、属性和事件,注意v-model适用于表单元素,计算属性有缓存。理解正确用法,借助文档和IDE,可提升开发质量和效率。善用Vue.js,打造响应式UI。
134 4
|
6月前
|
JavaScript 前端开发 编译器
Vue 模板是如何编译的?
Vue 模板是如何编译的?
64 0
|
6月前
|
存储 自然语言处理 JavaScript
【Vue原理解析】之模版编译
Vue.js是一款流行的JavaScript框架,它采用了基于组件的开发模式,使得前端开发更加简单和高效。而Vue的核心功能之一就是模版解析,它负责将Vue组件中的模版代码转化为可执行的JavaScript代码。本文将深入探讨Vue模版解析的作用、核心源码分析以及总结。
65 0
|
6月前
|
JavaScript 前端开发 API
Vue 3自定义指令:扩展你的应用功能
Vue 3自定义指令:扩展你的应用功能
|
11月前
|
JSON JavaScript 数据格式
vue的模板语法(下篇)
vue的模板语法(下篇)
|
JavaScript
73Vue - 内联模版
73Vue - 内联模版
29 0
|
JavaScript 前端开发
vue源码解析之mustache模板引擎
vue源码解析之mustache模板引擎
104 0