MongoDB\Model\IndexInfo::getKey()
定义
MongoDB\Model\IndexInfo::getKey()
返回索引规范(即 索引字段和顺序)。 这与
MongoDB\Collection::createIndex()
的$key
参数相关。function getKey(): array
Return Values
作为关联数组的索引规范。
示例
$info = new IndexInfo([ 'key' => ['x' => 1], ]); var_dump($info->getKey());
而输出将类似如下所示:
array(1) { ["x"]=> int(1) }
另请参阅
MongoDB 手册中的listIndexes命令参考