Why this update query only update one record once

前端 未结 3 1498
执笔经年
执笔经年 2021-01-19 06:17
$coll->update(
  array(
    \"uid\"=(int)$uid,
    \"status\"=>1,
    \"time\"=>array(\'$gt\'=>0,\'$lte\'=>$time)
  ),
  array(
    \'$set\'=>array         


        
3条回答
  •  南方客
    南方客 (楼主)
    2021-01-19 06:26

    Now MongoDB is using updateMany to update multiple documents: db.collection.updateMany(, , )

        db.collection.updateMany(criteria, objNew)
    

提交回复
热议问题