以tp5为例
1,在application下面创建一个公共的脚本文件夹 command
2,在command下面创建一个脚本php文件 test.php
test.php 内容为下
<?php namespace app\command; use think\console\Command; //必须引入 use think\console\Input; //必须引入 use think\console\Output; //必须引入 use think\Db; /** * TODO 测试脚本 * ============================================== * 未经授权不许任何使用和传播。 * ============================================== * @date: 2022/12/11 10:30 * @author: <liumy> * @version: 1.1 */ class test extends Command //必须继承 { protected function configure() { // 指令配置 $this->setName('test'); // 设置参数 } protected function execute(Input $input, Output $output) { // 书写代码逻辑 } }
执行命令 在tp框架根目录下面
php think 创建的文件名
root@iZuf64cui3lryxchuxo6gaZ:/usr/local/nginx/html/tp5_renhe# php think test