Docs Menu
Docs Home
/ / /
PHP 라이브러리 매뉴얼
/ /

MongoDB\Collection::getTypeMap()

이 페이지의 내용

  • 정의
  • Return Values
  • 예시
  • 다음도 참조하세요.

버전 1.2에 새로 추가됨.

MongoDB\Collection::getTypeMap()

이 collection의 유형 맵을 반환합니다.

function getTypeMap(): array

유형 맵 배열 입니다.

<?php
$collection = (new MongoDB\Client)->selectCollection('test', 'users', [
'typeMap' => [
'root' => 'array',
'document' => 'array',
'array' => 'array',
],
]);
var_dump($collection->getTypeMap());

이 경우 출력은 다음과 유사합니다:

array(3) {
["root"]=>
string(5) "array"
["document"]=>
string(5) "array"
["array"]=>
string(5) "array"
}

돌아가기

getReadPreference()