ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
>[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 ```