查询操作 , J7 ~- }+ ?0 x; f6 U% J4 y
- $filter["season_id"] = 106;
4 a6 K) ^1 ^, A( B! U) x - //$filter["array.8"] = 'cml123';
) B, k2 s, @* A1 O5 a; | - B( }- U4 }" I) d7 C# y* [
- $filter = ["matches.events_id"=>1];" V" O, ? v5 s2 A {
- " H) B3 C3 n. J; s- [2 R
- $filter = ["matches.events_id"=>['$in'=>[2,3,4,5,7]]];3 B9 @" x* L7 M
- $filter = ["matches.events_id"=>['$lt'=>'8'];. S7 \0 N5 w4 f& x
) G' S% B% a+ g% L: O4 {. I- $ I" O. o& q8 A; B6 i" d
- 以上条件说明 http://bbs.cncml.com/forum.php?m ... &extra=page%3D1
) T1 r/ }3 J. y, j - 3 s- y& W4 P6 U+ M, e7 v
- $options = [
( H; f9 c( l% @( e# \ - 'projection' => ['_id' => 0,"s_lastid" => 1],
% i% i; Q W& ^# `; @1 d) V - 'limit' => 1, //显示条数9 {" T8 f4 I5 w" Z% H
- 'skip' => 1 //跳过几条
: H! j" L% ]7 ?' E - ];
) N( y9 N3 s: I! m, I/ Q
~ }$ W9 m* r7 p$ Y- $querys = new MongoDB\Driver\Query($filter,$options);
5 {) d. E( w5 Z& a - $cursors = $manager->executeQuery('football.football_Competition_season_matches', $querys);
4 f* _( c: L- d( ~ U# W' I - $schedule= mg_querys($cursors);
- O* n1 P: P- I* @; R# a6 S- d! N - print_r($schedule);
6 G) S( e$ J) j, u
复制代码
8 ] | D# N1 {' u# I
+ w3 @# i, o/ s+ E: Z0 J4 b/ U2 H# Q- j& W! Z
+ c# C5 j, U, s& T------------------------------------------------------------------------------------- 一、更新前通过控制台查看数据,查看命令如下 db.sites.find().pretty() 二、通过php实现数据更新,代码如下 <?php // 1.创建数据库连接对象 $manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");
& R$ W# L, }$ p// 2.创建数据更新对象 $bulk = new MongoDB\Driver\BulkWrite; // 说明:更新index=2的数据,把原来的url更新为现在的内容,multi:只更新匹配到的第一条数据 $bulk->update( ['index' => 2], ['$set' => ['url' => 'https://www.java.com']], ['multi' => false, 'upsert' => false] ); + E! I) w4 Q: b; x
// 3.创建更新操作级别对象 // 说明:MongoDB\Driver\WriteConcern::MAJORITY :抛出网络错误异常、服务器错误异常;并等待一个主服务器完成写操作 // 1000:等待超时时间 $writeConcern = new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY, 1000); ( V5 Y. |8 J/ Y" b2 S
// 4.执行写命令 // 说明:test.sites是test库下的sites集合 // $bulk:更新对象 // $writeConcern:写操作保证级别 $result = $manager->executeBulkWrite('test.sites', $bulk, $writeConcern);
# M+ x2 }" G$ H% v5 E- Z// 5.输出更新后的结果 var_dump($result); 代码截图如下: 运行结果截图如下: 三、通过控制台查看更新后的数据,查看命令如下 db.sites.find().pretty()
: \; p! Q$ }4 H" t1 g9 A& ^. X/ d
|