您尚未登录,请登录后浏览更多内容! 登录 | 立即注册

QQ登录

只需一步,快速开始

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 13220|回复: 0
打印 上一主题 下一主题

[php学习资料] 升级PHP7操作MongoDB

[复制链接]
跳转到指定楼层
楼主
发表于 2019-3-19 14:24:22 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
使用 PHP+MongoDB 的用户很多,因为 MongoDB 对非结构化数据的存储很方便。在 PHP5 及以前,官方提供了两个扩展,Mongo 和 MongoDB,其中 Mongo 是对以 MongoClient 等几个核心类为基础的类群进行操作,封装得很方便,所以基本上都会选择 Mongo 扩展。
详情请见官方手册:http://php.net/manual/zh/book...
但是随着 PHP5 升级到 PHP7,官方不再支持 Mongo 扩展,只支持 MongoDB,而 PHP7 的性能提升巨大,让人无法割舍,所以怎么把 Mongo 替换成 MongoDB 成为了一个亟待解决的问题。MongoDB 引入了命名空间,但是功能封装非常差,如果非要用原生的扩展,几乎意味着写原生的 Mongo 语句。这种想法很违背 ORM 简化 DB IO 操作带来的语法问题而专注逻辑优化的思路。
详情也可参见官方手册:http://php.net/manual/zh/set....
在这种情况之下,MongoDB 官方忍不住了,为了方便使用,增加市场占有率,推出了基于MongoDB 扩展的库:https://github.com/mongodb/mo...
该库的详细文档见:https://docs.mongodb.com/php-...
MongoDB 驱动
如果使用原驱动的话,大致语法如下:
  1. <?php
    # C* g4 l7 U0 _( p* N6 R
  2. : l) r- M! s0 g3 M; v
  3. use MongoDB\Driver\Manager;
    6 }. o" O: T* \" C
  4. use MongoDB\Driver\BulkWrite;% Q  U/ f- S6 q4 a
  5. use MongoDB\Driver\WriteConcern;
    . s' u8 d/ X8 B
  6. use MongoDB\Driver\Query;
    , S1 z  N3 F+ s" M
  7. use MongoDB\Driver\Command;. x" m& S7 J3 Q5 m, x( [
  8. : e; \" K" K3 E7 ?9 \4 ]* i
  9. class MongoDb {  n8 T: x- |+ ?, H5 p- q5 p
  10. 4 {9 ?% L+ d1 k9 Q
  11.     protected $mongodb;
    + X$ a" j  K4 W7 P/ b1 v
  12.     protected $database;
    ! K5 |6 [) _/ ^& t# ]
  13.     protected $collection;' _9 L: x; f  p4 Q
  14.     protected $bulk;
    9 W8 x( \; v4 T& P5 b7 i
  15.     protected $writeConcern;, v; n& Q, \9 {* E, t2 P& e
  16.     protected $defaultConfig" [8 A( {; M) f0 u" K2 v
  17.         = [: j! z" h1 y) I+ P2 s9 ~
  18.             'hostname' => 'localhost',6 q2 M; q& C: O' |7 V7 i
  19.             'port' => '27017',4 {4 [! R3 e" y! w% [# Z* H
  20.             'username' => '',
    9 \% a# _( m' [/ \1 E. B1 q4 f) ?. {
  21.             'password' => '',5 U" G* J" G, M* _- E
  22.             'database' => 'test'  k; ?' ]$ O+ L; x) u9 y/ z, Z- y
  23.         ];
    0 {4 U$ z( L, T/ T
  24. # N6 f2 X/ s+ m
  25.     public function __construct($config) {
    - u) Y. |7 A5 h$ [# a
  26.         $config = array_merge($this->defaultConfig, $config);
    2 M' W% }1 t2 R9 G
  27.         $mongoServer = "mongodb://";
    0 m$ |% y& F, B
  28.         if ($config['username']) {
    6 S) x* m( p* H" |
  29.             $mongoServer .= $config['username'] . ':' . $config['password'] . '@';
    ' Z9 H& l8 Z; T4 \0 g. i
  30.         }
    ) u) j( N# C) [" b1 m4 t9 t
  31.         $mongoServer .= $config['hostname'];8 h6 o' {0 j3 A- J& J3 p
  32.         if ($config['port']) {8 u# T7 x3 b3 O2 Q* X
  33.             $mongoServer .= ':' . $config['port'];! I0 I5 Y- G4 X7 `. o: ~
  34.         }
    ) D9 {. B, c& B, N  F, ~! w
  35.         $mongoServer .= '/' . $config['database'];
    : F; d5 s7 p* f- u; {

  36. , f. k% A+ u* F$ T3 v  E
  37.         $this->mongodb = new Manager($mongoServer);
    0 b! {6 G2 ~6 I- A# ?% e
  38.         $this->database = $config['database'];
    6 e3 }  M$ k" X( q( J
  39.         $this->collection = $config['collection'];
    , H% `1 ^- F8 z2 R6 ?& ]4 Q* m
  40.         $this->bulk = new BulkWrite();  q8 C8 w# [8 r/ {" p( I. h
  41.         $this->writeConcern = new WriteConcern(WriteConcern::MAJORITY, 100);
    ( S7 M9 R! D. V/ w9 T8 U
  42.     }* T: ]) L2 a: y7 o+ |$ Q
  43. 3 s! T1 E2 Y( c1 Q( M7 `
  44.     public function query($where = [], $option = []) {9 l9 Y- Q4 m* G! }
  45.         $query = new Query($where, $option);
    9 g4 @8 p. x6 F7 o' O* [
  46.         $result = $this->mongodb->executeQuery("$this->database.$this->collection", $query);3 s" V( [  n% p( e$ g$ \
  47. 5 t% e- F8 M$ h
  48.         return json_encode($result);
    5 @: n. U0 D) p4 }, m; Q, ^- |
  49.     }- M  K- f# _6 Z* Z: }2 ~1 u
  50. ' U" f; C' W6 b% G# q2 w+ U2 S& `
  51.     public function count($where = []) {. M9 H% p, v+ i
  52.         $command = new Command(['count' => $this->collection, 'query' => $where]);
    , J. g. h& Z$ L4 W) X
  53.         $result = $this->mongodb->executeCommand($this->database, $command);& P# S$ j  i7 E
  54.         $res = $result->toArray();
    6 U3 J( |( t5 W$ z1 K
  55.         $count = 0;
    7 G( w  v4 s" m$ t, v
  56.         if ($res) {9 x1 Y2 u. S+ ]+ i) {6 @4 m
  57.             $count = $res[0]->n;: j2 l9 Y& q' q5 N( s5 D: Z; j
  58.         }
    3 |, M8 B/ ^+ V8 Z8 b( j
  59. ) H" Y- g% l" Y
  60.         return $count;
    # r9 g* Y, _  R
  61.     }$ P8 O+ n) y# X! T

  62. % M# I2 n2 Q' |! `8 R* ~  J' v% E
  63.     public function update($where = [], $update = [], $upsert = false) {  {/ s- ]3 |: `& o+ @( |
  64.         $this->bulk->update($where, ['$set' => $update], ['multi' => true, 'upsert' => $upsert]);. M* L3 W# }0 t1 v; p8 w
  65.         $result = $this->mongodb->executeBulkWrite("$this->database.$this->collection", $this->bulk, $this->writeConcern);
    : k; F# t% Q2 n

  66. 1 x8 ]9 K; f2 h4 [8 m
  67.         return $result->getModifiedCount();
    * F/ K! J! W4 n7 I% O: F
  68.     }/ Y0 y9 j  n* A/ I" q; O

  69. 2 a' {# f" v" F) |* W( E" h
  70.     public function insert($data = []) {
    6 H1 x! ]5 r8 z: I. y  E
  71.         $this->bulk->insert($data);
    : f- |5 p# Y1 b4 w
  72.         $result = $this->mongodb->executeBulkWrite("$this->database.$this->collection", $this->bulk, $this->writeConcern);0 h* B0 Y; F4 s! C8 J

  73. 3 A1 Q  A: [- w# ^: O! A
  74.         return $result->getInsertedCount();
    6 p5 ]) ^8 h; k2 }+ K; ?
  75.     }  V5 ~/ |- l0 A4 g1 X

  76. 7 ^* V3 u' C2 Q. G* Y
  77.     public function delete($where = [], $limit = 1) {
    1 Z4 y; {8 {3 O: a9 {
  78.         $this->bulk->delete($where, ['limit' => $limit]);
    - q/ w% I; n& i& ?; @
  79.         $result = $this->mongodb->executeBulkWrite("$this->database.$this->collection", $this->bulk, $this->writeConcern);% w- F8 V1 b% p0 a+ S

  80. / X1 Z- Q5 Y. _* k+ I/ A! m
  81.         return $result->getDeletedCount();
    6 @5 o# k9 o4 v6 e7 F1 s$ [
  82.     }
    ) h% K9 ^, F8 t9 ~2 Z+ K
  83. }
复制代码
这样的语法和之前差异太大,改动不方便,换 PHP MongoDB
MongoDB 库1.连接

  • 2 }, N+ D. X9 }: J# V7 y: O9 I
  1. new MongoClient();
复制代码
  • # K8 s3 [7 A! T! r. Z  E) Q: I
  1. new MongoDB\Client();
复制代码
2.新增

  • . s% k* E9 C2 l; x! q8 l% S* o
  1. $collention->insert($array, $options);
复制代码
  • - B1 W0 M5 \5 G, ?7 P  l
  1. $resultOne = $collention->insertOne($array, $options);//单
    : _7 p/ i& J5 t; m% {& m
  2. $lastId = $resultOne->getInsertedId();& K6 X. H: u6 z, L% S
  3. $resultMany = $collention->insertMany($array, $options);//多
    . r  q  D; }: X5 L' v; f
  4. $count = $resultMany->getInsertedCount();
复制代码
3.修改

  • * F5 G7 L1 C" Y8 b
  1. $collention->update($condition, [
    & a$ K$ M* ]+ l$ b8 d/ k
  2.     '$set' => $values& o+ q# G0 p' O
  3. ,[2 W* ?4 {& F7 v( P' K
  4.     'multiple' => true//多条,单条false  Z& y9 @( H. {& \8 ~
  5. ]);
复制代码

  • , A$ P1 k( X- X! p
  1. $collection->updateOne(
    " [$ _9 h! b2 F$ `, L9 v0 y
  2.     ['state' => 'ny'],' v& {" L6 y$ T
  3.     ['$set' => ['country' => 'us']]9 o$ v1 t' o- M; s9 P% X
  4. );
    + V" b8 c0 i' V( R
  5. $updateResult = $collection->updateMany(
    + A* d: V7 I2 g6 l  a3 U/ ^
  6.     ['state' => 'ny'],
    / s( z+ Q2 [. v5 F
  7.     ['$set' => ['country' => 'us']]
    . @5 S7 g5 C; G! m' W3 _" y
  8. );& w1 O1 Z3 U$ w. w& x  r
  9. $count = $updateResult->getModifiedCount();
复制代码
4.查询
  • - d( b/ d% M- d! g1 ?1 ^$ Y
  1. $cursor = $collection->find($condition, [+ Y0 ?% u1 x( s$ N3 ~
  2.     'name' => true//指定字段
    + \+ T4 A( e! u2 p8 A, x9 D
  3. ]);
    : c+ E# ^3 `* `1 h
  4. $cursor->skip(5);, [# i, o% g: }" Z5 Y& C- d7 D9 `
  5. $cursor->limit(5);
    7 T, U6 ]3 z7 ?. F% Y# `2 B
  6. $cursor->sort([
    ) D# n! a- c1 `, A) z. i
  7.     'time' => -1
    ' M4 N7 r- _9 N$ N
  8. ]);
复制代码

  • # p" a. s+ t$ f, C- e
  1. $cursor = $collection->find($condition, [
    * g3 t' C/ P0 A0 t4 o1 W* z
  2.     'skip' => 5,
    , c- M3 R! w, b7 t" N3 W9 o
  3.     'limit' => 5,  q) b* _8 ]& E* {5 P
  4.     'sort' => [% J5 p6 k, u; T1 P
  5.         'time' => -10 i1 M' z4 P: X" V, G
  6.     ],//排序: y! v, |" K  M* z
  7.     'projection' => [' N; g5 O; N; X! Q7 i* o* x
  8.         'name' => 1//指定字段
    0 m: ?6 ^8 Q# {" ]3 Z/ x5 n( ?
  9.     ]
    9 u- u, }* G4 ~6 ]
  10. ]);
复制代码
5.删除
  • % w! L' u/ Z; D" l" z& T0 o0 `
  1. $collention->remove($condition, [2 u8 r9 b( j7 K8 i
  2.     'justOne' => false//删单条
      X9 {1 {  ~5 n# K- v* O& G
  3. ]);/ f7 k, x$ ]4 O& x  `, i0 g  q
  4. $collention->remove([]);//删所有
复制代码

  • 5 w: x8 S* M  y5 v
  1. $result = $collention->deleteOne($condition, $options);8 o. r5 R# H: S9 X1 }6 \  `
  2. $collention->deleteMany($condition, $options);4 ]1 |, ^# H9 R7 j6 r! n9 o

  3. / ]4 {; \" D: f
  4. $result->getDeletedCount();
复制代码
补充
有些人可能习惯以类似 MySQL 的自增 ID 来处理数据,以前可能使用 findAndModify() 方法来查询并修改:
  1. $collention->findAndModify([
    3 q0 Y4 l5 R$ Z* i. o) }- f
  2.     '_id' => $tableName//我在自增表中用其它的表名作主键% p( `6 }( H4 X! L3 b! {/ U- U& ?
  3. ], [. c4 ^# Y; d& h: T- ~) K; ]
  4.     '$inc' => ['id' => 1]//自增* a" p+ s5 x% U" l5 `+ L: n, L
  5. ], [( u7 |! }, _+ e. t2 Z' x
  6.     '_id' => 0
    + R7 b' X: h, w& V
  7. ], [
    ; Y( Y) E' p6 ^
  8.     'new' => 1//返回修改后的结果,默认是修改前的: E0 l# O9 V+ \4 @
  9. ]);
复制代码
现在使用 MongoDB 库的话需要修改为:
  1. $collention->findOneAndUpdate([# d2 |! P# w5 i) z: |: f
  2.     '_id' => $tableName1 a9 R( \, o' W
  3. ], [
    " {( q% H/ m- n) Z
  4.     '$inc' => ['id' => 1]
    & s5 G3 h' T1 t, x  {, k. L
  5. ], [
    . Q' _, ?% w! s( k
  6.     'projection' => ['id' => 1],5 k; k) n7 y9 B4 U% I6 M; K' l; N
  7.     'returnDocument' => MongoDB\Operation\FindOneAndUpdate::RETURN_DOCUMENT_AFTER
    8 q& ~: o9 D9 {& X
  8. ]);
复制代码
2 B* m3 x  a# W% I4 N

: G. N* u2 U9 D- s5 ?
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 支持支持 反对反对
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

GMT+8, 2024-12-22 20:25 , Processed in 0.110006 second(s), 20 queries .

Copyright © 2001-2024 Powered by cncml! X3.2. Theme By cncml!