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" }