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

MongoDB\Model\IndexInfo::is2dSphere()

在此页面上

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

1.4 版本中的新增功能

MongoDB\Model\IndexInfo::is2dSphere()

返回该索引是否为 2 dsphere索引。

function is2dSphere(): boolean

指示索引是否为 2dsphere 索引的布尔值。

<?php
$collection = (new MongoDB\Client)->selectCollection('test', 'places');
$collection->createIndex(['pos' => '2dsphere']);
foreach ($collection->listIndexes() as $index) {
if ($index->is2dSphere()) {
printf("%s has 2dsphereIndexVersion: %d\n", $index->getName(), $index['2dsphereIndexVersion']);
}
}

而输出将类似如下所示:

pos_2dsphere has 2dsphereIndexVersion: 3
  • MongoDB\Collection::createIndex()

  • MongoDB\Collection::listIndexes()

  • MongoDB手册中的2 dsphere 索引参考

后退

getVersion()