Update Documents
Overview
在本指南中,您可以学习;了解如何使用MongoDB PHP库来更新MongoDB集合中的文档。 您可以调用 MongoDB\Collection::updateOne()
方法更新单个文档,也可以调用MongoDB\Collection::updateMany()
方法更新多个文档。
样本数据
本指南中的示例使用 Atlas示例数据集的sample_restaurants
数据库中的restaurants
集合。 要从PHP应用程序访问权限此集合,请实例化一个连接到Atlas 集群的MongoDB\Client
,并将以下值分配给$collection
变量:
$collection = $client->sample_restaurants->restaurants;
要学习;了解如何创建免费的MongoDB Atlas 群集并加载示例数据集,请参阅Atlas入门指南。
更新操作
您可以使用以下方法在 MongoDB 中执行更新操作:
MongoDB\Collection::updateOne()
,更新匹配搜索条件的第一个文档MongoDB\Collection::updateMany()
,更新与搜索条件匹配的所有文档
每种更新方法都需要以下参数:
查询过滤文档:指定要更新的文档。 有关查询筛选器的更多信息,请参阅MongoDB Server手册中的查询筛选器文档部分。
更新文档:指定更新操作符或要执行的更新类型,以及要更改的字段和值。 有关更新操作符及其用法的列表,请参阅MongoDB Server手册中的字段更新操作符指南。
更新一个文档
以下示例使用updateOne()
方法将restaurants
集合中某一文档的name
值从'Bagels N Buns'
更新为'2 Bagels 2 Buns'
:
$result = $collection->updateOne( ['name' => 'Bagels N Buns'], ['$set' => ['name' => '2 Bagels 2 Buns']] );
更新多个文档
以下示例使用updateMany()
方法更新cuisine
值为'Pizza'
的所有文档。 更新后,文档的cuisine
值为'Pasta'
。
$result = $collection->updateMany( ['cuisine' => 'Pizza'], ['$set' => ['cuisine' => 'Pasta']] );
自定义更新操作
您可以通过将指定选项值的大量作为参数传递来修改updateOne()
和updateMany()
方法的行为。 下表描述了您可以在大量中设立的一些选项:
选项 | 说明 |
---|---|
| Specifies whether the update operation performs an upsert operation if no
documents match the query filter. For more information, see the upsert
statement
in the MongoDB Server manual. Defaults to false . |
| Specifies whether the update operation bypasses document validation. This lets you
update documents that don't meet the schema validation requirements, if any
exist. For more information about schema validation, see Schema
Validation in the MongoDB
Server manual. Defaults to false . |
| Specifies the kind of language collation to use when sorting
results. For more information, see Collation
in the MongoDB Server manual. |
| Specifies which array elements an update applies to if the operation modifies
array fields. |
| Sets the index to scan for documents.
For more information, see the hint statement
in the MongoDB Server manual. |
| Sets the write concern for the operation.
For more information, see Write Concern
in the MongoDB Server manual. |
| Specifies a document with a list of values to improve operation readability.
Values must be constant or closed expressions that don't reference document
fields. For more information, see the let statement in the
MongoDB Server manual. |
| A comment to attach to the operation. For more information, see the insert command
fields guide in the
MongoDB Server manual. |
以下示例使用updateMany()
方法查找borough
值为'Manhattan'
的所有文档。 然后,它将这些文档中的borough
值更新为'Manhattan (north)'
。 由于upsert
选项设立为true
,因此,如果查询过滤与任何现有文档都不匹配, MongoDB PHP库将插入一个新文档。
$result = $collection->updateMany( ['borough' => 'Manhattan'], ['$set' => ['borough' => 'Manhattan (north)']], ['upsert' => true] );
返回值
updateOne()
和updateMany()
方法返回MongoDB\UpdateResult
类的实例。 该类包含以下成员函数:
function | 说明 |
---|---|
| Returns the number of documents that matched the query filter, regardless of
how many were updated. |
| Returns the number of documents modified by the update operation. If an updated
document is identical to the original, it is not included in this
count. |
| Returns a boolean indicating whether the write operation was acknowledged. |
| Returns the number of document that were upserted into the database. |
| Returns the ID of the document that was upserted in the database, if the driver
performed an upsert. |
以下示例使用updateMany()
方法将匹配文档的name
字段从'Dunkin' Donuts'
更新为'Dunkin''
。 它调用getModifiedCount()
成员函数来打印已修改文档的数量:
$result = $collection->updateMany( ['name' => 'Dunkin\' Donuts'], ['$set' => ['name' => 'Dunkin\'']] ); echo 'Modified documents: ', $result->getModifiedCount();
Modified documents: 206
更多信息
要学习;了解有关创建查询筛选器的更多信息,请参阅《 指定查询》指南。
API 文档
要进一步了解本指南所讨论的任何方法或类型,请参阅以下 API 文档: