查询操作 6 c: C- h" P, i/ u: z0 d/ w
- $filter["season_id"] = 106;
2 u* j) f, b0 } - //$filter["array.8"] = 'cml123';: a' R" W( ?' }! _( T/ w
- & b) L" i# A2 R+ A' j& k! c
- $filter = ["matches.events_id"=>1];' M( ^6 l+ h9 L+ b) T! v
- ) A. b2 f5 N, W" y8 @
- $filter = ["matches.events_id"=>['$in'=>[2,3,4,5,7]]];
4 Q) d( |% p, u7 l; Q- U n - $filter = ["matches.events_id"=>['$lt'=>'8'];
7 C; X# H: _ ]
3 d. E" }1 W# h- M- " s+ L! e$ y" ?4 F" Z! x0 ~
- 以上条件说明 http://bbs.cncml.com/forum.php?m ... &extra=page%3D1
0 S- z6 J* a+ l& n6 K: S2 Z - - Z+ C+ H) C7 h' i
- $options = [7 I" [ _/ Z8 w
- 'projection' => ['_id' => 0,"s_lastid" => 1], X: F6 W8 x5 M x* e0 j- o
- 'limit' => 1, //显示条数' x% D. t7 {: X' z5 t# y. R8 m5 u& ?
- 'skip' => 1 //跳过几条
4 d0 v" P3 p; d0 w - ];; U7 u- |0 j" t8 l: e) K* w6 D
9 c2 U& f5 V. l- $querys = new MongoDB\Driver\Query($filter,$options);& u+ X/ o `$ E8 _
- $cursors = $manager->executeQuery('football.football_Competition_season_matches', $querys);
$ n0 h& X9 I/ @* A% S, b( @ - $schedule= mg_querys($cursors);- I7 _' S7 B' X- s i
- print_r($schedule);
& _+ O: {8 e, n2 y4 R4 [; `" a6 A
复制代码 . ]7 X9 E: J& Y, `, e- ^
" h2 ~$ c- `1 b" _! i
, h1 s& }8 D7 t4 n/ r1 m
& s$ a1 Q8 c% X6 F------------------------------------------------------------------------------------- 一、更新前通过控制台查看数据,查看命令如下 db.sites.find().pretty() 二、通过php实现数据更新,代码如下 <?php // 1.创建数据库连接对象 $manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");
: {3 ^; f* {6 R- Z" K. Q0 X& s5 X// 2.创建数据更新对象 $bulk = new MongoDB\Driver\BulkWrite; // 说明:更新index=2的数据,把原来的url更新为现在的内容,multi:只更新匹配到的第一条数据 $bulk->update( ['index' => 2], ['$set' => ['url' => 'https://www.java.com']], ['multi' => false, 'upsert' => false] ); # x* P6 P; [" A4 M2 y& s& x
// 3.创建更新操作级别对象 // 说明:MongoDB\Driver\WriteConcern::MAJORITY :抛出网络错误异常、服务器错误异常;并等待一个主服务器完成写操作 // 1000:等待超时时间 $writeConcern = new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY, 1000); 9 M8 @- ?) B7 {! |/ }& }, U2 _4 y
// 4.执行写命令 // 说明:test.sites是test库下的sites集合 // $bulk:更新对象 // $writeConcern:写操作保证级别 $result = $manager->executeBulkWrite('test.sites', $bulk, $writeConcern); % S$ {5 T9 e$ u% v6 N9 W
// 5.输出更新后的结果 var_dump($result); 代码截图如下: 运行结果截图如下: 三、通过控制台查看更新后的数据,查看命令如下 db.sites.find().pretty()
/ H9 c8 @2 P( x& X3 D/ l8 v2 ]# X* @5 h
|