Thinkphp5命令行自动生成

        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完全开发手册-->命令行



你可能感兴趣的:(PHP)