Docs 菜单
Docs 主页
/ / /
PHP 库手册
/ / /

MongoDB\Model\CollectionInfo::getIdIndex()

在此页面上

  • 定义
  • Return Values
  • 示例
  • 另请参阅

1.9 版本中的新功能

MongoDB\Model\CollectionInfo::getIdIndex()

返回有关_id字段索引的信息。

function getIdIndex(): array

包含_id索引信息的大量。 这对应于listCollections命令回复中返回的idIndex字段。

<?php
$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\Database::createCollection()

  • MongoDB 手册中的listCollections命令参考

后退

getCappedSize()