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

MongoDB\Model\IndexInfo::getName()

在此页面上

  • 定义
  • Return Values
  • 示例
  • 另请参阅
MongoDB\Model\IndexInfo::getName()

返回索引名称。 这与 MongoDB\Collection::createIndex()的返回值相关。 索引名称可以派生自$key参数,也可以通过name选项显式指定。

function getName(): string

索引名称。

<?php
$info = new IndexInfo([
'name' => 'x_1',
]);
echo $info->getName();

而输出将类似如下所示:

x_1
  • MongoDB\Collection::createIndex()

  • MongoDB 手册中的listIndexes命令参考

后退

getKey()