查询操作
' ^- C+ \8 |: L; I' P3 @! E- $filter["season_id"] = 106;2 B. e& R/ v! T# J4 z8 x
- //$filter["array.8"] = 'cml123';9 q* }) n+ {- z/ \/ Y
5 {) T0 z+ {# \9 z4 ]- $filter = ["matches.events_id"=>1];0 D: K d+ R" c$ A
- 3 [: m: {5 R2 |
- $filter = ["matches.events_id"=>['$in'=>[2,3,4,5,7]]]; ?/ b n p5 k
- $filter = ["matches.events_id"=>['$lt'=>'8'];
. }5 B- G3 h% U' B% |5 O
6 n! L D& u3 a
; n8 G+ B, c' r6 \- 以上条件说明 http://bbs.cncml.com/forum.php?m ... &extra=page%3D12 I3 N) m. B8 z! S* `/ Z5 L8 [
- 6 k6 g5 M) `0 _- ^# `% M( ^5 Y
- $options = [
* ^6 Y, `& w2 T2 X# y - 'projection' => ['_id' => 0,"s_lastid" => 1],
8 t7 c/ [+ e$ ]4 @9 V6 A1 V; F - 'limit' => 1, //显示条数4 d4 J+ S% K' p; p" r
- 'skip' => 1 //跳过几条% s8 F; d* R/ V0 g; I* v; I- E
- ];- p, a. ]* @: a# d: J
, c, h! ~2 P# Y# o9 H3 X# V- $querys = new MongoDB\Driver\Query($filter,$options);4 m& B. r- Y2 ?# w# M- x
- $cursors = $manager->executeQuery('football.football_Competition_season_matches', $querys);8 ^4 G% j( D1 L0 h* d
- $schedule= mg_querys($cursors);
B+ V1 {+ }& o: t2 |5 [ D8 q - print_r($schedule);
4 v3 u: F5 n K u/ H* b+ N1 W
复制代码
, m+ k+ P6 ]; F
2 |3 g2 M5 @/ T2 R# [
$ _- O9 x& ~6 F6 T
; ~" J8 g8 i$ Q2 p! q------------------------------------------------------------------------------------- 一、更新前通过控制台查看数据,查看命令如下 db.sites.find().pretty() 二、通过php实现数据更新,代码如下 <?php // 1.创建数据库连接对象 $manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");
; g8 a% n9 r% \' Y* a6 n6 I// 2.创建数据更新对象 $bulk = new MongoDB\Driver\BulkWrite; // 说明:更新index=2的数据,把原来的url更新为现在的内容,multi:只更新匹配到的第一条数据 $bulk->update( ['index' => 2], ['$set' => ['url' => 'https://www.java.com']], ['multi' => false, 'upsert' => false] );
+ [! }7 R) h, {( G6 K2 A3 l6 G P// 3.创建更新操作级别对象 // 说明:MongoDB\Driver\WriteConcern::MAJORITY :抛出网络错误异常、服务器错误异常;并等待一个主服务器完成写操作 // 1000:等待超时时间 $writeConcern = new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY, 1000);
" i! b! k* S. f: |8 x// 4.执行写命令 // 说明:test.sites是test库下的sites集合 // $bulk:更新对象 // $writeConcern:写操作保证级别 $result = $manager->executeBulkWrite('test.sites', $bulk, $writeConcern); : _, W& O) I* B6 Y, A
// 5.输出更新后的结果 var_dump($result); 代码截图如下: 运行结果截图如下: 三、通过控制台查看更新后的数据,查看命令如下 db.sites.find().pretty()
) }6 j( V4 j$ W% ]2 h5 b5 V" L% E$ v0 ?$ M2 I' k
|