MongoDB\Model\CollectionInfo::getIdIndex()
バージョン 1.9 の新機能。
定義
Return Values
_id
インデックスに関する情報を含む配列。 これは、 listCollections
コマンドの応答で返されるidIndex
フィールドに対応します。
例
$info = new CollectionInfo([ 'type' => 'view', 'name' => 'foo', 'idIndex' => [ 'v' => 2, 'key' => ['_id' => 1], 'name' => '_id', 'ns' => 'test.foo', ], ]); var_dump($info->getIdIndex());
出力は次のようになります。
array(4) { ["v"]=> int(2) ["key"]=> array(1) { ["_id"]=> int(1) } ["name"]=> string(3) "_id" ["ns"]=> string(8) "test.foo" }
その他の参照
MongoDB マニュアルのlistCollectionsコマンド参照