개요
이 가이드 에서는 MongoDB PHP 라이브러리를 사용하여 MongoDB 컬렉션 에서 대체 작업을 실행 하는 방법을 학습 수 있습니다. 바꾸기 작업은 업데이트 작업과 다르게 수행됩니다. 업데이트 작업은 대상 문서 에서 지정된 필드만 수정합니다. 바꾸기 작업은 대상 문서 의 모든 필드를 제거하고 새 필드로 바꿉니다.
문서 를 바꾸려면 MongoDB\Collection::replaceOne() 메서드를 사용합니다.
샘플 데이터
The examples in this guide use the restaurants collection in the sample_restaurants database from the Atlas sample datasets. To access this collection from your PHP application, instantiate a MongoDB\Client that connects to an Atlas cluster and assign the following value to your $collection variable:
$collection = $client->sample_restaurants->restaurants;
무료 MongoDB 배포서버 생성하고 샘플 데이터 세트를 로드하는 방법을 학습하려면, MongoDB 시작하기 가이드 참조하세요.
대체 작업
MongoDB\Collection::replaceOne() 을(를) 사용하여 바꾸기 작업을 수행할 수 있습니다. 이 메서드는 검색 기준과 일치하는 첫 번째 문서 에서 _id 필드 를 제외한 모든 필드를 제거합니다. 그런 다음 지정한 필드와 값이 문서 에 삽입됩니다.
필수 매개변수
이 replaceOne() 메서드에는 다음 매개 변수가 필요합니다.
쿼리 필터하다 문서 대체할 문서를 결정합니다. 쿼리 필터에 대한 자세한 내용은 MongoDB Server 매뉴얼의 필터 문서 쿼리 섹션 을 참조하세요.
문서바꾸기 는 새 문서 에 삽입할 필드와 값을 지정합니다.
반환 값
replaceOne() 메서드는 MongoDB\UpdateResult 객체 를 반환합니다. MongoDB\UpdateResult 유형에는 다음 메서드가 포함되어 있습니다.
메서드 | 설명 |
|---|---|
| 업데이트된 문서 수에 관계없이 쿼리 필터하다 와 일치하는 문서 수를 반환합니다. |
| 업데이트 작업으로 수정된 문서 수를 반환합니다. 업데이트된 문서 원본과 동일한 경우 이 계산에 포함되지 않습니다. |
| 데이터베이스 에 업서트된 문서 수를 반환합니다(있는 경우). |
| 운전자 업서트 수행한 경우 데이터베이스 에 업서트된 문서 의 ID 반환합니다. |
| 쓰기 (write) 작업이 승인되었는지 여부를 나타내는 부울을 반환합니다. |
예시
다음 예시 에서는 replaceOne() 메서드를 사용하여 name 필드 값이 'Pizza Town' 인 문서 의 필드와 값을 바꿉니다. 그런 다음 수정된 문서 수를 출력합니다.
$replaceDocument = [ 'name' => 'Mongo\'s Pizza', 'cuisine' => 'Pizza', 'address' => [ 'street' => '123 Pizza St', 'zipCode' => '10003', ], 'borough' => 'Manhattan', ]; $result = $collection->replaceOne(['name' => 'Pizza Town'], $replaceDocument); echo 'Modified documents: ', $result->getModifiedCount();
중요
_id 필드의 값은 변경할 수 없습니다. 대체 문서에서 _id 필드 값을 지정하는 경우 기존 문서의 _id 값과 일치해야 합니다.
바꾸기 작업 수정
옵션 값을 매개 변수로 지정하는 배열 을 전달하여 MongoDB\Collection::replaceOne() 메서드의 동작을 수정할 수 있습니다. 다음 표에서는 배열 에서 설정하다 수 있는 몇 가지 옵션을 설명합니다.
옵션 | 설명 |
|---|---|
| Specifies whether the replace operation performs an upsert operation if no documents match the query filter. For more information, see the upsert statement in the MongoDB Server manual. |
| Specifies whether the replace operation bypasses document validation. This lets you replace 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. |
| 대체 작업을 수행하기 전에 문서에 적용할 정렬 순서를 지정합니다. |
| Specifies the kind of language collation to use when sorting results. To learn more, see the Collation section of this page. |
| Gets or sets the index to scan for documents. For more information, see the hint statement 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. |
| Attaches a comment to the operation. For more information, see the insert command fields guide in the MongoDB Server manual. |
데이터 정렬
작업에 대한 데이터 정렬을 지정하려면 collation 옵션을 설정하는 $options 배열 매개변수를 작업 메서드에 전달합니다. 데이터 정렬 규칙을 구성하는 배열 에 collation 옵션을 할당합니다.
다음 표에서는 데이터 정렬을 구성하기 위해 설정하다 수 있는 필드에 대해 설명합니다.
필드 | 설명 |
|---|---|
| (Required) Specifies the International Components for Unicode (ICU) locale. For a list of supported locales, see Collation Locales and Default Parameters in the MongoDB Server manual. |
| (선택 사항) 대/소문자 비교 포함 여부를 지정합니다. |
| (선택 사항) 3차 수준 비교 시 대소문자 차이의 정렬 순서를 지정합니다. |
| (Optional) Specifies the level of comparison to perform, as defined in the ICU documentation. |
| (선택 사항) 운전자 숫자 문자열을 숫자로 비교할지 여부를 지정합니다. |
| (선택 사항) 비교를 위해 라이브러리에서 공백과 구듁점을 기본 문자로 간주할지 여부를 지정합니다. |
| (선택 사항) |
| (선택 사항) 분음 부호가 포함된 string이 string의 뒤쪽에서 앞쪽으로 정렬되는지 지정합니다. |
데이터 정렬 및 각 필드에 사용할 수 있는 값에 대해 자세히 학습하려면 MongoDB Server 매뉴얼의 데이터 정렬 항목을 참조하세요.
예시
다음 코드는 replaceOne() 메서드를 사용하여 name 필드 값이 'Food Town' 인 첫 번째 문서 를 찾은 다음 이 문서 를 name 값이 'Food World' 인 새 문서 로 바꿉니다. upsert 옵션이 true 로 설정하다 되어 있으므로 쿼리 필터하다 가 기존 문서와 일치하지 않는 경우 라이브러리는 새 문서 를 삽입합니다.
$replaceDocument = [ 'name' => 'Food World', 'cuisine' => 'Mixed', 'address' => [ 'street' => '123 Food St', 'zipCode' => '10003', ], 'borough' => 'Manhattan', ]; $result = $collection->replaceOne( ['name' => 'Food Town'], $replaceDocument, ['upsert' => true], );
추가 정보
업데이트 작업에 학습 보려면 문서 업데이트 가이드 를 참조하세요.
쿼리 필터 생성에 대해 자세히 알아보려면 쿼리 지정 가이드를 참조하세요.
API 문서
이 가이드에서 사용되는 메서드 또는 유형에 대해 자세히 알아보려면 다음 API 설명서를 참조하세요.