Stars: 101
Forks: 51
Pull Requests: 54
Issues: 48
Watchers: 11
Last Updated: 2022-06-22 07:11:16
mongodb driver for thinkphp
License: Apache License 2.0
Languages: PHP
请使用最新版本的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();