cyzonetech / think-mongo
mongodb driver for thinkphp6.0
v3.0.4
2019-06-19 10:52 UTC
Requires
- topthink/framework: ^6.0.0
This package is not auto-updated.
Last update: 2024-12-16 09:01:59 UTC
README
请使用最新版本的topthink/think-orm 本仓库不再维护更新
首先安装官方的mongodb扩展:
http://pecl.php.net/package/mongodb
然后,配置应用的数据库配置文件database.php
的type
参数改为:
'type' => 'Mongo',
即可正常使用MongoDb,例如:
Db::name('demo')
->find();
Db::name('demo')
->field('id,name')
->limit(10)
->order('id','desc')
->select();