Eyoucms程序开发:自定义命令行
创建自定义命令行
第一步,配置command.php文件,目录在application/command.php
return [
'app\home\command\Test',
];
第二步,建立命令类文件,新建application/home/command/Test.php
namespace app\home\command;
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)
{
$output->writeln("TestCommand:");
}
}
这个文件定义了一个叫test的命令,备注为Here is the remark,
执行命令会输出TestCommand。
第三步,测试-命令帮助-命令行下运行
php think
输出
Think Console version 0.1
Usage:
command [options] [arguments]
Options:
-h, --help Display this help message
-V, --version Display this console version
-q, --quiet Do not output any message
--ansi Force ANSI output
--no-ansi Disable ANSI output
-n, --no-interaction Do not ask any interactive question
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
Available commands:
build Build Application Dirs
clear Clear runtime file
help Displays help for a command
list Lists commands
test Here is the remark
make
make:controller Create a new resource controller class
make:model Create a new model class
optimize
optimize:autoload Optimizes PSR0 and PSR4 packages to be loaded with classmaps too, good for production.
optimize:config Build config and common file cache.
optimize:route Build route cache.
optimize:schema Build database schema cache.
第四步,运行test命令
php think test
输出
TestCommand:
免责声明:1.凡本站注明“来源:XXX(非老K模板网)”的作品,均转载自其它媒体,所载的文章、图片、音频视频文件等资料的版权归版权所有人所有,如有侵权,请联系laokcms#126.com处理;2.凡本站转载内容仅代表作者本人观点,与老K模板网无关。
相关文档
- pbootcms后台内容列表增加阅读量和点赞量自定义修改
- pbootcms面包屑导航样式修改和自定义的设置方法
- pbootcms模板按照自定义字段搜索
- 如何修改PbootCMS默认面包屑导航样式及自定义设置方法
- 迅睿cms模板如何自定义分页css样式
- 迅睿cms网站任意页面前端调用全局模块表单提交及自定义样式方法
- 迅睿cms网站后台控制台面板如何添加自定义数据?
- 用jQuery替换文章编辑器里的图片样式及alt标签 实现自定义...
- 迅睿cms模块和栏目如何自定义内容搜索页面模板
- WordPress添加自定义CSS代码的几种方法
- 迅睿CMS:创建自定义应用控制器
- 迅睿CMS:自定义下单字段
- 迅睿CMS:用于后台市场的列表自定义搜索
- 迅睿CMS:创建试题库
- 迅睿CMS:群站SAAS插件:用户站点创建方式
- 判断自定义字段有值时显示或者隐藏
- 详情页调用会员自定义属性的方法
- EYOU arclist,list列表如何调用自定义多选项字段
- EYOU 文章列表如何调用自定义字段
- 易优cms支付宝支付终端签约教程
下一篇: Eyoucms程序开发:虚拟主机环境
0 条评论