icy8 / thinkphp5-cli
1.0.0
2021-01-06 17:47 UTC
Requires
- php: >=5.4
This package is auto-updated.
Last update: 2024-11-07 02:29:41 UTC
README
前言
thinkphp5命令行模式工具类,系统规定的命令配置太繁琐了,来个直接一点的封装一下。
说明
php think test
php think test a
安装
composer require icy8/thinkphp5-cli
用例
<?php namespace app\spider; use Think5Cli\Cli; class Test extends Cli { // 必须配置 命令名 protected $cli_name = 'test'; // 默认参数 protected function _exec() { echo "hello"; } // 其他参数 使用php think test arg1 调用 protected function _a() { echo "a method"; } }