php操作mongodb封装类与用法实例_第1页
php操作mongodb封装类与用法实例_第2页
php操作mongodb封装类与用法实例_第3页
php操作mongodb封装类与用法实例_第4页
php操作mongodb封装类与用法实例_第5页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

第php操作mongodb封装类与用法实例本文实例讲述了php操作mongodb封装类与用法。分享给大家供大家参考,具体如下:

近来学习了mongodb,刚好是做php开发的,随便写了php操作mongodb的封装类.

*CreatedbyPhpStorm.

*User:lee

*Date:2016/10/24

*Time:13:49

namespaceApp\Http\Controllers\Api;

useApp\Http\Common\ReturnApi;

mongdb常规操作

classMongdbCommonController

privatestatic$conn;

privatestatic$mon;

privatestatic$error;

privatefunction__construct(){

//self::$conn=new\MongoClient("mongodb://".env('MONGDB_USER').":".env('MONGDB_PASS')."@".env('MONGDB_HOST').":".env('MONGDB_PORT')."/".env('MONGDB_DB'));

self::$conn=new\MongoClient("mongodb://".env('MONGDB_USER').":".env('MONGDB_PASS')."@".env('MONGDB_HOST').":".env('MONGDB_PORT'));

//self::$conn=new\MongoClient("mongodb://".env('MONGDB_HOST').":".env('MONGDB_PORT'));

$db=env('MONGDB_DB');

self::$mon=self::$conn-

publicstaticfunctiongetInstance(){

if(!(self::$conninstanceofself)){

self::$conn=newself();

//returnself::$conn-mydb;

returnself::$conn;

privatefunction__clone(){

trigger_error('Cloneisnotallowed');

}//禁止克隆

//创建索引

publicfunctionensureIndex($table,$index,$index_param=array())

$index_param['safe']=1;

try{

self::$mon-$table-ensureIndex($index,$index_param);

returntrue;

catch(MongoCursorException$e)

self::$error=$e-getMessage();

returnfalse;

//添加

publicfunctioninsert($table,$arr){

try{

self::$mon-$table-insert($arr,array('w'=true));

returntrue;

catch(MongoCursorException$e)

self::$error=$e-getMessage();

returnfalse;

//更新

publicfunctionupdate($table,$condition,$new_arr,$options=array())

$options['w']=1;

if(!isset($options['multiple']))

$options['multiple']=0;

try{

self::$mon-$table-update($condition,$new_arr,$options);

returntrue;

catch(MongoCursorException$e)

self::$error=$e-getMessage();

returnfalse;

//删除

publicfunctionremove($table,$condition,$options=array())

$options['w']=1;

try{

self::$mon-$table-remove($condition,$options);

returntrue;

catch(MongoCursorException$e)

self::$error=$e-getMessage();

returnfalse;

//查找

publicfunctionfind($table,$query_condition,$result_condition=array(),$fields=array())

$cursor=self::$mon-$table-find($query_condition,$fields);

if(!empty($result_condition['start']))

$cursor-skip($result_condition['start']);

if(!empty($result_condition['limit']))

$cursor-limit($result_condition['limit']);

if(!empty($result_condition['sort']))

$cursor-sort($result_condition['sort']);

$result=array();

try{

while($cursor-hasNext())

$result[]=$cursor-getNext();

catch(MongoCursorTimeoutException$e)

self::$error=$e-getMessage();

returnfalse;

return$result;

//查找一条记录

publicfunctionfindOne($table,$condition,$fields=array())

returnself::$mon-$table-findOne($condition,$fields);

//返回表的记录数

publicfunctioncount($table)

returnself::$mon-$table-count();

//返回错误信息

publicfunctiongetError()

returnself::$error;

操作实例:

useApp\Http\Controllers\Api\MongdbCommonController;

$db=MongdbCommonController::getInstance();

$collection='tab';

$data=array('tt'='sdsd',

'pp'='ssdsdf');

//返回记录数

echo$db-count($collection);

//插入记录

$db-insert($collection,array("id"=2,"title"="asdqw"));

$db-update($collection,array("id"=2),array('tt'='dfdfd',"gg"="bbb",'hh'='dfsdsd'));

//查找记录

echo'pre

print_r($db-find($collection,array("tt"='dfdfd'),array("start"=1,"limit"=4)));

$db-remove($collection,arra

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论