Docs Menu
Docs Home
/ / /
PHP 라이브러리 매뉴얼
/ / /

MongoDB\Model\IndexInfo::is2dSphere()

이 페이지의 내용

  • 정의
  • Return Values
  • 예시
  • 다음도 참조하세요.

버전 1.4에 새로 추가되었습니다.

MongoDB\Model\IndexInfo::is2dSphere()

인덱스가 2dsphere 인덱스인지 여부를 반환합니다.

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 매뉴얼의 2dsphere 인덱스 참조

돌아가기

getVersion()