Docs Menu
Docs Home
/ / /
PHP ライブラリ マニュアル
/ /

MongoDB\Collection::getTypeMap()

項目一覧

  • 定義
  • Return Values
  • その他の参照

バージョン 1.2 の新機能.

MongoDB\Collection::getTypeMap()

このコレクションのタイプ マップを返します。

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()