Docs Menu
Docs Home
/ / /
PHP ライブラリ マニュアル
/ / /

MongoDB\Model\IndexInfo::isText()

項目一覧

  • 定義
  • Return Values
  • その他の参照

バージョン 1.4 で追加

MongoDB\Model\IndexInfo::isText()

インデックスがテキストインデックスであるかどうかを返します。

function isText(): boolean

インデックスが テキスト インデックスかどうかを示すブール値。

<?php
$collection = (new MongoDB\Client)->selectCollection('test', 'restaurants');
$collection->createIndex(['name' => 'text']);
foreach ($collection->listIndexes() as $index) {
if ($index->isText()) {
printf("%s has default language: %d\n", $index->getName(), $index['default_language']);
}
}

出力は次のようになります。

name_text has default language: english
  • MongoDB\Collection::createIndex()

  • MongoDB\Collection::listIndexes()

  • MongoDB マニュアルのテキスト インデックスに関する参考資料

戻る

isSparse()