一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

深入PHP操作MongoDB的技術總結

復制代碼 代碼如下:
<?php
/**
* php操作MongoDB學習筆記
*/
//*************************
//**   連接MongoDB數據庫  **//
//*************************
//格式=>(“mongodb://用戶名:密碼 @地址:端口/默認指定數據庫”,參數)
$conn = new Mongo();
//可以簡寫為
//$conn=new Mongo(); #連接本地主機,默認端口.
//$conn=new Mongo(“172.21.15.69″); #連接遠程主機
//$conn=new Mongo(“xiaocai.loc:10086″); #連接指定端口遠程主機
//$conn=new Mongo(“xiaocai.loc”,array(“replicaSet”=>true)); #負載均衡
//$conn=new Mongo(“xiaocai.loc”,array(“persist”=>”t”)); #持久連接
//$conn=new Mongo(“mongodb://sa:123@localhost”); #帶用戶名密碼
//$conn=new Mongo(“mongodb://localhost:27017,localhost:27018″); #連接多個服務器
//$conn=new Mongo(“mongodb:///tmp/mongo-27017.sock”); #域套接字
//$conn=new Mongo(“mongodb://admin_miss:miss@localhost:27017/test”,array(‘persist'=>'p',”replicaSet”=>true)); #完整
//詳細資料:http://www.php.NET/manual/en/mongo.connecting.php
//*************************
//**   選擇數據庫與表    **//
//*************************
$db=$conn->mydb; #選擇mydb數據庫
//$db=$conn->selectDB(“mydb”); #第二種寫法
$collection=$db->column; #選擇集合(選擇'表')
//$collection=$db->selectCollection(‘column'); #第二種寫法
//$collection=$conn->mydb->column; #更簡潔的寫法
//注意:1.數據庫和集合不需要事先創(chuàng)建,若它們不存在則會自動創(chuàng)建它們.
//   2.注意錯別字,你可能會無意間的創(chuàng)建一個新的數據庫(與原先的數據庫混亂).
//*************************
//**   插入文檔     **//
//*************************
//**向集合中插入數據,返回bool判斷是否插入成功. **/
$array=array(‘column_name'=>'col'.rand(100,999),'column_exp'=>'xiaocai');
$result=$collection->insert($array); #簡單插入
echo “新記錄ID:”.$array['_id']; #MongoDB會返回一個記錄標識
var_dump($result); #返回:bool(true)
//**向集合中安全插入數據,返回插入狀態(tài)(數組). **/
$array=array(‘column_name'=>'col'.rand(100,999),'column_exp'=>'xiaocai2′);
$result=$collection->insert($array,true); #用于等待MongoDB完成操作,以便確定是否成功.(當有大量記錄插入時使用該參數會比較有用)
echo “新記錄ID:”.$array['_id']; #MongoDB會返回一個記錄標識
var_dump($result); #返回:array(3) { ["err"]=> NULL ["n"]=> int(0) ["ok"]=> float(1) }
//**完整的寫法 **/
#insert($array,array(‘safe'=>false,'fsync'=>false,'timeout'=>10000))
/*
* *
* 完整格式:insert ( array $a [, array $options = array() ] )
*    insert(array(),array(‘safe'=>false,'fsync'=>false,'timeout'=>10000))
*       參數:safe:默認false,是否安全寫入
*   fsync:默認false,是否強制插入到同步到磁盤
*     timeout:超時時間(毫秒)
*
* 插入結果:{ “_id” : ObjectId(“4d63552ad549a02c01000009″), “column_name” : “col770″, “column_exp” : “xiaocai” }
*    '_id'為主鍵字段,在插入是MongoDB自動添加.
*
*    注意:1.以下兩次插入的為同一條記錄(相同的_id),因為它們的值相同。
*         $collection->insert(array(‘column_name'=>'xiaocai'));
*         $collection->insert(array(‘column_name'=>'xiaocai'));
*     避免
* $collection->insert(array(‘column_name'=>'xiaocai'),true);
* try {
*      $collection->insert(array(‘column_name'=>'xiaocai'),true);
* }catch(MongoCursorException $e){
*      echo “Can't save the same person twice!/n”;
* }
*
*    詳細資料:http://www.php.NET/manual/zh/mongocollection.insert.php
* *
*/
//*************************
//**   更新文檔     **//
//*************************
//** 修改更新 **/
$where=array(‘column_name'=>'col123′);
$newdata=array(‘column_exp'=>'GGGGGGG','column_fid'=>444);
$result=$collection->update($where,array(‘$set'=>$newdata)); #$set:讓某節(jié)點等于給定值,類似的還有$pull $pullAll $pop $inc,在后面慢慢說明用法
/*
* 結果:
* 原數據
* {“_id”:ObjectId(“4d635ba2d549a02801000003″),”column_name”:”col123″,”column_exp”:”xiaocai”}
* 被替換成了
* {“_id”:ObjectId(“4d635ba2d549a02801000003″),”column_name”:”col123″,”column_exp”:”GGGGGGG”,”column_fid”:444}
*/
//** 替換更新 **/
$where=array(‘column_name'=>'col709′);
$newdata=array(‘column_exp'=>'HHHHHHHHH','column_fid'=>123);
$result=$collection->update($where,$newdata);
/*
* 結果:
* 原數據
* {“_id”:ObjectId(“4d635ba2d549a02801000003″),”column_name”:”col709″,”column_exp”:”xiaocai”}
* 被替換成了
* {“_id”:ObjectId(“4d635ba2d549a02801000003″),”column_exp”:”HHHHHHHHH”,”column_fid”:123}
*/
//** 批量更新 **/
$where=array(‘column_name'=>'col');
$newdata=array(‘column_exp'=>'multiple','91u'=>684435);
$result=$collection->update($where,array(‘$set'=>$newdata),array(‘multiple'=>true));
/**
* 所有'column_name'='col'都被修改
*/
//** 自動累加 **/
$where=array('91u'=>684435);
$newdata=array(‘column_exp'=>'edit');
$result=$collection->update($where,array(‘$set'=>$newdata,'$inc'=>array('91u'=>-5)));
/**
* 更新91u=684435的數據,并且91u自減5
*/
/** 刪除節(jié)點 **/
$where=array(‘column_name'=>'col685′);
$result=$collection->update($where,array(‘$unset'=>'column_exp'));
/**
* 刪除節(jié)點column_exp
*/
/*
* *
* 完整格式:update(array $criteria, array $newobj [, array $options = array()  ] )
*       注意:1.注意區(qū)分替換更新與修改更新
*    2.注意區(qū)分數據類型如 array('91u'=>'684435′)與array('91u'=>684435)
* 詳細資料:http://www.mongodb.org/display/DOCS/Updating#Updating-%24bit
* *
*/
//*************************
//**   刪除文檔     **//
//*************************
/** 清空數據庫 **/
$collection->remove(array(‘column_name'=>'col399′));
//$collection->remove(); #清空集合
/** 刪除指定MongoId **/
$id = new MongoId(“4d638ea1d549a02801000011″);
$collection->remove(array(‘_id'=>(object)$id));
/*
* *
*  使用下面的方法來匹配{“_id”:ObjectId(“4d638ea1d549a02801000011″)},查詢、更新也一樣
*  $id = new MongoId(“4d638ea1d549a02801000011″);
*  array(‘_id'=>(object)$id)
* *
*/
//*************************
//**   查詢文檔     **//
//*************************
/** 查詢文檔中的記錄數 **/
echo ‘count:'.$collection->count().”<br>”; #全部
echo ‘count:'.$collection->count(array(‘type'=>'user')).”<br>”; #可以加上條件
echo ‘count:'.$collection->count(array(‘age'=>array(‘$gt'=>50,'$lte'=>74))).”<br>”; #大于50小于等于74
echo ‘count:'.$collection->find()->limit(5)->skip(0)->count(true).”<br>”; #獲得實際返回的結果數
/**
* 注:$gt為大于、$gte為大于等于、$lt為小于、$lte為小于等于、$ne為不等于、$exists不存在
*/
/** 集合中所有文檔 **/
$cursor = $collection->find()->snapshot();
foreach ($cursor as $id => $value) {
echo “$id: “; var_dump($value); echo “<br>”;
}
/**
* 注意:
* 在我們做了find()操作,獲得$cursor游標之后,這個游標還是動態(tài)的.
* 換句話說,在我find()之后,到我的游標循環(huán)完成這段時間,如果再有符合條件的記錄被插入到collection,那么這些記錄也會被$cursor 獲得.
* 如果你想在獲得$cursor之后的結果集不變化,需要這樣做:
* $cursor = $collection->find();
* $cursor->snapshot();
* 詳見http://www.bumao.com/index.php/2010/08/mongo_php_cursor.html
*/
/** 查詢一條數據 **/
$cursor = $collection->findOne();
/**
*  注意:findOne()獲得結果集后不能使用snapshot(),fields()等函數;
*/
/** age,type 列不顯示 **/
$cursor = $collection->find()->fields(array(“age”=>false,”type”=>false));
/** 只顯示user 列 **/
$cursor = $collection->find()->fields(array(“user”=>true));
/**
* 我這樣寫會出錯:$cursor->fields(array(“age”=>true,”type”=>false));
*/
/** (存在type,age節(jié)點) and age!=0 and age<50 **/
$where=array(‘type'=>array(‘$exists'=>true),'age'=>array(‘$ne'=>0,'$lt'=>50,'$exists'=>true));
$cursor = $collection->find($where);
/** 分頁獲取結果集  **/
$cursor = $collection->find()->limit(5)->skip(0);
/** 排序  **/
$cursor = $collection->find()->sort(array(‘age'=>-1,'type'=>1)); ##1表示降序 -1表示升序,參數的先后影響排序順序
/** 索引  **/
$collection->ensureIndex(array(‘age' => 1,'type'=>-1)); #1表示降序 -1表示升序
$collection->ensureIndex(array(‘age' => 1,'type'=>-1),array(‘background'=>true)); #索引的創(chuàng)建放在后臺運行(默認是同步運行)
$collection->ensureIndex(array(‘age' => 1,'type'=>-1),array(‘unique'=>true)); #該索引是唯一的
/**
* ensureIndex (array(),array(‘name'=>'索引名稱','background'=true,'unique'=true))
* 詳見:http://www.php.NET/manual/en/mongocollection.ensureindex.php
*/
/** 取得查詢結果 **/
$cursor = $collection->find();
$array=array();
foreach ($cursor as $id => $value) {
$array[]=$value;
}
//*************************
//**   文檔聚類     **//
//*************************
//這東西沒弄明白…
$conn->close(); #關閉連接
/*
關系型數據庫與MongoDB數據存儲的區(qū)別
MySql數據結構:
CREATE TABLE IF NOT EXISTS `column`(
`column_id` int(16)  NOT NULL  auto_increment  COMMENT ‘主鍵',
`column_name` varchar(32) NOT NULL COMMENT ‘欄目名稱',
PRIMARY KEY  (`column_id`)
);
CREATE TABLE IF NOT EXISTS `article`(
`article_id`  int(16)  NOT NULL  auto_increment  COMMENT ‘主鍵',
`article_caption` varchar(15) NOT NULL COMMENT ‘標題',
PRIMARY KEY(`article_id`)
);
CREATE TABLE IF NOT EXISTS `article_body`(
`article_id` int(16) NOT NULL COMMENT ‘article.article_id',
`body` text COMMENT ‘正文'
);
MongoDB數據結構:
$data=array(
‘column_name' =>'default',
‘article' =>array(
‘article_caption' => ‘xiaocai',
‘body'   => ‘xxxxxxxxxx…'
)
);
$inc
如果記錄的該節(jié)點存在,讓該節(jié)點的數值加N;如果該節(jié)點不存在,讓該節(jié)點值等于N
設結構記錄結構為 array('a'=>1,'b'=>'t'),想讓a加5,那么:
$coll->update(
array('b'=>'t'),
array('$inc'=>array('a'=>5)),
)
$set
讓某節(jié)點等于給定值
設結構記錄結構為 array('a'=>1,'b'=>'t'),b為加f,那么:
$coll->update(
array('a'=>1),
array('$set'=>array('b'=>'f')),
)
$unset
刪除某節(jié)點
設記錄結構為 array('a'=>1,'b'=>'t'),想刪除b節(jié)點,那么:
$coll->update(
array('a'=>1),
array('$unset'=>'b'),
)
$push
如果對應節(jié)點是個數組,就附加一個新的值上去;不存在,就創(chuàng)建這個數組,并附加一個值在這個數組上;如果該節(jié)點不是數組,返回錯誤。
設記錄結構為array('a'=>array(0=>'haha'),'b'=& gt;1),想附加新數據到節(jié)點a,那么:
$coll->update(
array('b'=>1),
array('$push'=>array('a'=>'wow')),
)
這樣,該記錄就會成為:array('a'=>array(0=>'haha',1=>'wow'),'b'=>1)
$pushAll
與$push類似,只是會一次附加多個數值到某節(jié)點
$addToSet
如果該階段的數組中沒有某值,就添加之
設記錄結構為array('a'=>array(0=& gt;'haha'),'b'=>1),如果想附加新的數據到該節(jié)點a,那么:
$coll->update(
array('b'=>1),
array('$addToSet'=>array('a'=>'wow')),
)
如果在a節(jié)點中已經有了wow,那么就不會再添加新的,如果沒有,就會為該節(jié)點添加新的item――wow。
$pop
設該記錄為array('a'=>array(0=>'haha',1=& gt;'wow'),'b'=>1)
刪除某數組節(jié)點的最后一個元素:
$coll->update(
array('b'=>1),
array('$pop=>array('a'=>1)),
)
刪除某數組階段的第一個元素
$coll->update(
array('b'=>1),
array('$pop=>array('a'=>-1)),
)
$pull
如果該節(jié)點是個數組,那么刪除其值為value的子項,如果不是數組,會返回一個錯誤。
設該記錄為 array('a'=>array(0=>'haha',1=>'wow'),'b'=>1),想要刪除a中value為 haha的子項:
$coll->update(
array('b'=>1),
array('$pull=>array('a'=>'haha')),
)
結果為: array('a'=>array(0=>'wow'),'b'=>1)
$pullAll
與$pull類似,只是可以刪除一組符合條件的記錄。
*/
?>

復制代碼 代碼如下:
<?php
/**
* php操作MongoDB學習筆記
*/
//*************************
//**   連接MongoDB數據庫  **//
//*************************
//格式=>(“mongodb://用戶名:密碼 @地址:端口/默認指定數據庫”,參數)
$conn = new Mongo();
//可以簡寫為
//$conn=new Mongo(); #連接本地主機,默認端口.
//$conn=new Mongo(“172.21.15.69″); #連接遠程主機
//$conn=new Mongo(“xiaocai.loc:10086″); #連接指定端口遠程主機
//$conn=new Mongo(“xiaocai.loc”,array(“replicaSet”=>true)); #負載均衡
//$conn=new Mongo(“xiaocai.loc”,array(“persist”=>”t”)); #持久連接
//$conn=new Mongo(“mongodb://sa:123@localhost”); #帶用戶名密碼
//$conn=new Mongo(“mongodb://localhost:27017,localhost:27018″); #連接多個服務器
//$conn=new Mongo(“mongodb:///tmp/mongo-27017.sock”); #域套接字
//$conn=new Mongo(“mongodb://admin_miss:miss@localhost:27017/test”,array(‘persist'=>'p',”replicaSet”=>true)); #完整
//詳細資料:http://www.php.NET/manual/en/mongo.connecting.php
//*************************
//**   選擇數據庫與表    **//
//*************************
$db=$conn->mydb; #選擇mydb數據庫
//$db=$conn->selectDB(“mydb”); #第二種寫法
$collection=$db->column; #選擇集合(選擇'表')
//$collection=$db->selectCollection(‘column'); #第二種寫法
//$collection=$conn->mydb->column; #更簡潔的寫法
//注意:1.數據庫和集合不需要事先創(chuàng)建,若它們不存在則會自動創(chuàng)建它們.
//   2.注意錯別字,你可能會無意間的創(chuàng)建一個新的數據庫(與原先的數據庫混亂).
//*************************
//**   插入文檔     **//
//*************************
//**向集合中插入數據,返回bool判斷是否插入成功. **/
$array=array(‘column_name'=>'col'.rand(100,999),'column_exp'=>'xiaocai');
$result=$collection->insert($array); #簡單插入
echo “新記錄ID:”.$array['_id']; #MongoDB會返回一個記錄標識
var_dump($result); #返回:bool(true)
//**向集合中安全插入數據,返回插入狀態(tài)(數組). **/
$array=array(‘column_name'=>'col'.rand(100,999),'column_exp'=>'xiaocai2′);
$result=$collection->insert($array,true); #用于等待MongoDB完成操作,以便確定是否成功.(當有大量記錄插入時使用該參數會比較有用)
echo “新記錄ID:”.$array['_id']; #MongoDB會返回一個記錄標識
var_dump($result); #返回:array(3) { ["err"]=> NULL ["n"]=> int(0) ["ok"]=> float(1) }
//**完整的寫法 **/
#insert($array,array(‘safe'=>false,'fsync'=>false,'timeout'=>10000))
/*
* *
* 完整格式:insert ( array $a [, array $options = array() ] )
*    insert(array(),array(‘safe'=>false,'fsync'=>false,'timeout'=>10000))
*       參數:safe:默認false,是否安全寫入
*   fsync:默認false,是否強制插入到同步到磁盤
*     timeout:超時時間(毫秒)
*
* 插入結果:{ “_id” : ObjectId(“4d63552ad549a02c01000009″), “column_name” : “col770″, “column_exp” : “xiaocai” }
*    '_id'為主鍵字段,在插入是MongoDB自動添加.
*
*    注意:1.以下兩次插入的為同一條記錄(相同的_id),因為它們的值相同。
*         $collection->insert(array(‘column_name'=>'xiaocai'));
*         $collection->insert(array(‘column_name'=>'xiaocai'));
*     避免
* $collection->insert(array(‘column_name'=>'xiaocai'),true);
* try {
*      $collection->insert(array(‘column_name'=>'xiaocai'),true);
* }catch(MongoCursorException $e){
*      echo “Can't save the same person twice!/n”;
* }
*
*    詳細資料:http://www.php.NET/manual/zh/mongocollection.insert.php
* *
*/
//*************************
//**   更新文檔     **//
//*************************
//** 修改更新 **/
$where=array(‘column_name'=>'col123′);
$newdata=array(‘column_exp'=>'GGGGGGG','column_fid'=>444);
$result=$collection->update($where,array(‘$set'=>$newdata)); #$set:讓某節(jié)點等于給定值,類似的還有$pull $pullAll $pop $inc,在后面慢慢說明用法
/*
* 結果:
* 原數據
* {“_id”:ObjectId(“4d635ba2d549a02801000003″),”column_name”:”col123″,”column_exp”:”xiaocai”}
* 被替換成了
* {“_id”:ObjectId(“4d635ba2d549a02801000003″),”column_name”:”col123″,”column_exp”:”GGGGGGG”,”column_fid”:444}
*/
//** 替換更新 **/
$where=array(‘column_name'=>'col709′);
$newdata=array(‘column_exp'=>'HHHHHHHHH','column_fid'=>123);
$result=$collection->update($where,$newdata);
/*
* 結果:
* 原數據
* {“_id”:ObjectId(“4d635ba2d549a02801000003″),”column_name”:”col709″,”column_exp”:”xiaocai”}
* 被替換成了
* {“_id”:ObjectId(“4d635ba2d549a02801000003″),”column_exp”:”HHHHHHHHH”,”column_fid”:123}
*/
//** 批量更新 **/
$where=array(‘column_name'=>'col');
$newdata=array(‘column_exp'=>'multiple','91u'=>684435);
$result=$collection->update($where,array(‘$set'=>$newdata),array(‘multiple'=>true));
/**
* 所有'column_name'='col'都被修改
*/
//** 自動累加 **/
$where=array('91u'=>684435);
$newdata=array(‘column_exp'=>'edit');
$result=$collection->update($where,array(‘$set'=>$newdata,'$inc'=>array('91u'=>-5)));
/**
* 更新91u=684435的數據,并且91u自減5
*/
/** 刪除節(jié)點 **/
$where=array(‘column_name'=>'col685′);
$result=$collection->update($where,array(‘$unset'=>'column_exp'));
/**
* 刪除節(jié)點column_exp
*/
/*
* *
* 完整格式:update(array $criteria, array $newobj [, array $options = array()  ] )
*       注意:1.注意區(qū)分替換更新與修改更新
*    2.注意區(qū)分數據類型如 array('91u'=>'684435′)與array('91u'=>684435)
* 詳細資料:http://www.mongodb.org/display/DOCS/Updating#Updating-%24bit
* *
*/
//*************************
//**   刪除文檔     **//
//*************************
/** 清空數據庫 **/
$collection->remove(array(‘column_name'=>'col399′));
//$collection->remove(); #清空集合
/** 刪除指定MongoId **/
$id = new MongoId(“4d638ea1d549a02801000011″);
$collection->remove(array(‘_id'=>(object)$id));
/*
* *
*  使用下面的方法來匹配{“_id”:ObjectId(“4d638ea1d549a02801000011″)},查詢、更新也一樣
*  $id = new MongoId(“4d638ea1d549a02801000011″);
*  array(‘_id'=>(object)$id)
* *
*/
//*************************
//**   查詢文檔     **//
//*************************
/** 查詢文檔中的記錄數 **/
echo ‘count:'.$collection->count().”<br>”; #全部
echo ‘count:'.$collection->count(array(‘type'=>'user')).”<br>”; #可以加上條件
echo ‘count:'.$collection->count(array(‘age'=>array(‘$gt'=>50,'$lte'=>74))).”<br>”; #大于50小于等于74
echo ‘count:'.$collection->find()->limit(5)->skip(0)->count(true).”<br>”; #獲得實際返回的結果數
/**
* 注:$gt為大于、$gte為大于等于、$lt為小于、$lte為小于等于、$ne為不等于、$exists不存在
*/
/** 集合中所有文檔 **/
$cursor = $collection->find()->snapshot();
foreach ($cursor as $id => $value) {
echo “$id: “; var_dump($value); echo “<br>”;
}
/**
* 注意:
* 在我們做了find()操作,獲得$cursor游標之后,這個游標還是動態(tài)的.
* 換句話說,在我find()之后,到我的游標循環(huán)完成這段時間,如果再有符合條件的記錄被插入到collection,那么這些記錄也會被$cursor 獲得.
* 如果你想在獲得$cursor之后的結果集不變化,需要這樣做:
* $cursor = $collection->find();
* $cursor->snapshot();
* 詳見http://www.bumao.com/index.php/2010/08/mongo_php_cursor.html
*/
/** 查詢一條數據 **/
$cursor = $collection->findOne();
/**
*  注意:findOne()獲得結果集后不能使用snapshot(),fields()等函數;
*/
/** age,type 列不顯示 **/
$cursor = $collection->find()->fields(array(“age”=>false,”type”=>false));
/** 只顯示user 列 **/
$cursor = $collection->find()->fields(array(“user”=>true));
/**
* 我這樣寫會出錯:$cursor->fields(array(“age”=>true,”type”=>false));
*/
/** (存在type,age節(jié)點) and age!=0 and age<50 **/
$where=array(‘type'=>array(‘$exists'=>true),'age'=>array(‘$ne'=>0,'$lt'=>50,'$exists'=>true));
$cursor = $collection->find($where);
/** 分頁獲取結果集  **/
$cursor = $collection->find()->limit(5)->skip(0);
/** 排序  **/
$cursor = $collection->find()->sort(array(‘age'=>-1,'type'=>1)); ##1表示降序 -1表示升序,參數的先后影響排序順序
/** 索引  **/
$collection->ensureIndex(array(‘age' => 1,'type'=>-1)); #1表示降序 -1表示升序
$collection->ensureIndex(array(‘age' => 1,'type'=>-1),array(‘background'=>true)); #索引的創(chuàng)建放在后臺運行(默認是同步運行)
$collection->ensureIndex(array(‘age' => 1,'type'=>-1),array(‘unique'=>true)); #該索引是唯一的
/**
* ensureIndex (array(),array(‘name'=>'索引名稱','background'=true,'unique'=true))
* 詳見:http://www.php.NET/manual/en/mongocollection.ensureindex.php
*/
/** 取得查詢結果 **/
$cursor = $collection->find();
$array=array();
foreach ($cursor as $id => $value) {
$array[]=$value;
}
//*************************
//**   文檔聚類     **//
//*************************
//這東西沒弄明白…
$conn->close(); #關閉連接
/*
關系型數據庫與MongoDB數據存儲的區(qū)別
MySql數據 結構:
CREATE TABLE IF NOT EXISTS `column`(
`column_id` int(16)  NOT NULL  auto_increment  COMMENT ‘主鍵',
`column_name` varchar(32) NOT NULL COMMENT ‘欄目名稱',
PRIMARY KEY  (`column_id`)
);
CREATE TABLE IF NOT EXISTS `article`(
`article_id`  int(16)  NOT NULL  auto_increment  COMMENT ‘主鍵',
`article_caption` varchar(15) NOT NULL COMMENT ‘標題',
PRIMARY KEY(`article_id`)
);
CREATE TABLE IF NOT EXISTS `article_body`(
`article_id` int(16) NOT NULL COMMENT ‘article.article_id',
`body` text COMMENT ‘正文'
);
MongoDB數據結構:
$data=array(
‘column_name' =>'default',
‘article' =>array(
‘article_caption' => ‘xiaocai',
‘body'   => ‘xxxxxxxxxx…'
)
);
$inc
如果記錄的該節(jié)點存在,讓該節(jié)點的數值加N;如果該節(jié)點不存在,讓該節(jié)點值等 于N
設結構記錄結構為 array('a'=>1,'b'=>'t'),想讓a加5,那么:
$coll->update(
array('b'=>'t'),
array('$inc'=>array('a'=>5)),
)
$set
讓某節(jié)點等于給定值
設結構記錄結構為 array('a'=>1,'b'=>'t'),b為加f,那么:
$coll->update(
array('a'=>1),
array('$set'=>array('b'=>'f')),
)
$unset
刪除某節(jié)點
設記錄結構為 array('a'=>1,'b'=>'t'),想刪除b節(jié)點,那么:
$coll->update(
array('a'=>1),
array('$unset'=>'b'),
)
$push
如果對應節(jié)點是個數組,就附加一個新的值上去;不存在,就創(chuàng)建這個數組,并附加一個值在這個數組上;如果 該節(jié)點不是數組,返回錯誤。
設記錄結構為array('a'=>array(0=>'haha'),'b'=& gt;1),想附加新數據到節(jié)點a,那么:
$coll->update(
array('b'=>1),
array('$push'=>array('a'=>'wow')),
)
這 樣,該記錄就會成為:array('a'=>array(0=>'haha',1=>'wow'),'b'=>1)
$pushAll
與$push類似,只是會一次附加多個數值到某節(jié)點
$addToSet
如果該階段的數組中沒有某值,就添加之
設記錄結構為array('a'=>array(0=& gt;'haha'),'b'=>1),如果想附加新的數據到該節(jié)點a,那么:
$coll->update(
array('b'=>1),
array('$addToSet'=>array('a'=>'wow')),
)
如果在a節(jié)點中已經有了wow,那么就不會再添加新的,如果沒有,就會為該節(jié)點添加新的item――wow。
$pop
設該記錄為array('a'=>array(0=>'haha',1=& gt;'wow'),'b'=>1)
刪除某數組節(jié)點的最后一個元素:
$coll->update(
array('b'=>1),
array('$pop=>array('a'=>1)),
)
刪除某數組階段的第一個元素
$coll->update(
array('b'=>1),
array('$pop=>array('a'=>-1)),
)
$pull
如果該節(jié)點是個數組,那么刪除其值為value的子項,如果不是數組,會返回一個錯誤。
設該記錄為 array('a'=>array(0=>'haha',1=>'wow'),'b'=>1),想要刪除a中value為 haha的子項:
$coll->update(
array('b'=>1),
array('$pull=>array('a'=>'haha')),
)
結 果為: array('a'=>array(0=>'wow'),'b'=>1)
$pullAll
與$pull類似,只是可以刪除一組符合條件的記錄。
*/
?>

php技術深入PHP操作MongoDB的技術總結,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 欧美成人午夜视频免看 | 伊人色综合久久成人 | 精品一区二区三区的国产在线观看 | 亚洲国产精久久久久久久 | 久久中精品中文 | 亚洲一区二区综合 | 日产精品一区二区免费 | 成人亚洲国产综合精品91 | 伊人久久青青 | h成人在线 | 91国在线 | 天天色天天操综合网 | 深爱激情婷婷 | 成人精品视频在线 | o欧美人与禽交 | 五月婷婷激情综合网 | 亚洲伊人色一综合网 | 日本www在线 | 亚洲国产一级a毛片 | 四虎国产精品免费久久久 | 中文在线1区二区六区 | 人人公开免费超级碰碰碰视频 | 国内精品久久久久激情影院 | 91久久精品视频 | 九九精品国产 | 黄视频网站观看 | 国产欧美日韩综合精品无毒 | avtt加勒比 | 亚洲一区二区三区四区在线 | 亚洲综合色婷婷久久 | 国产乱码精品一区二区三上 | 全部免费69堂在线视频 | 亚洲首页国产精品丝袜 | 三级网站免费播放国语 | 美女视频黄视大全视频免费的 | 亚洲区一二三四区2021 | 国产黄色三级网站 | 91情侣高清精品国产 | 国产视频一区二 | 国产精品第1页在线观看 | 91区国产福利在线观看午夜 |