企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 实例化数据库模型 在需要使用 /application/example/model/User.php 的地方,添加引用: ~~~ use application\example\model\User; ~~~ 接下来框架会自动载入模型,我们直接实例化即可: ~~~ $model = new User(); // $model= new Model('user');//等价于上面 ~~~