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

MongoDB\Client::getTypeMap()

項目一覧

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

バージョン 1.2 の新機能.

MongoDB\Client::getTypeMap()

このクライアントのタイプ マップを返します。

function getTypeMap(): array

型のマップ配列。

<?php
$client = new MongoDB\Client('mongodb://127.0.0.1/', [], [
'typeMap' => [
'root' => 'array',
'document' => 'array',
'array' => 'array',
],
]);
var_dump($client->getTypeMap());

出力は次のようになります。

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

戻る

getReadPreference()