liuhairui f27ac772af first commit пре 10 месеци
..
src f27ac772af first commit пре 10 месеци
.gitignore f27ac772af first commit пре 10 месеци
LICENSE f27ac772af first commit пре 10 месеци
README.md f27ac772af first commit пре 10 месеци
composer.json f27ac772af first commit пре 10 месеци

README.md

ThinkPHP 5.0 MongoDb驱动

首先安装官方的mongodb扩展:

http://pecl.php.net/package/mongodb

然后,配置应用的数据库配置文件database.phptype参数为:

'type'  =>  '\think\mongo\Connection',

即可正常使用MongoDb,例如:

Db::name('demo')
    ->find();
Db::name('demo')
    ->field('id,name')
    ->limit(10)
    ->order('id','desc')
    ->select();

1.*版本支持ThinkPHP 5.0 2.*版本支持ThinkPHP 5.1