多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
>[danger] 命令行创建控制器 ``` // app/controller/User.php php think make:controller User // 生成多级控制器 php think make:controller user/Profile // app/admin/controller/User.php php think make:controller admin@User // 生成多级控制器 php think make:controller admin@user/Profile // 默认生成的控制器类带有资源操作方法 // 生成不带有资源操作方法的控制器类文件 php think make:controller User --plain // 生成用于接口的控制器 php think make:controller User --api ```