ThinkPHP5.0支持 Console 应用,通过命令行的方式执行一些URL访问不方便或者安全性较高的操作。
这里只是其中几条常用的指令,在此记下:
php think build --module test
执行上面的指令可以生成一个名字为test的模块
php think make:controller index/Blog
执行上面的指令可以生成 index 模块的 Blog 控制器类库文件
php think make:model index/Blog
执行上面的指令可以生成 index 模块的 Blog 模型类库文件
详细情况可以自行查看Thinkphp5完全开发手册-->命令行
---------------------
作者:予怀之言
来源:CSDN
原文:https://blog.csdn.net/qq_26683009/article/details/53645408
版权声明:本文为博主原创文章,转载请附上博文链接!