多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# 实例化数据库模型 在需要使用 /application/example/model/User.php 的地方,添加引用: ~~~ use application\example\model\User; ~~~ 接下来框架会自动载入模型,我们直接实例化即可: ~~~ $model = new User(); // $model= new Model('user');//等价于上面 ~~~