MongoDB\Collection::getTypeMap()
이 페이지의 내용
버전 1.2에 새로 추가됨.
정의
Return Values
유형 맵 배열 입니다.
예시
$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" }