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 ```