MongoDB\Model\IndexInfo::is2dSphere()
이 페이지의 내용
버전 1.4에 새로 추가되었습니다.
정의
MongoDB\Model\IndexInfo::is2dSphere()
인덱스가 2dsphere 인덱스인지 여부를 반환합니다.
function is2dSphere(): boolean
Return Values
인덱스가 2dsphere 인덱스인지 여부를 나타내는 부울입니다.
예시
$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