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

MongoDB\Collection::getCollectionName()

項目一覧

  • 定義
  • Return Values
  • その他の参照
MongoDB\Collection::getCollectionName()

このコレクションの名前を返します。

function getCollectionName(): string

このコレクションの名前を string として表します。

次の例では、 testデータベース内のzipsコレクションのコレクション名が返されます。

<?php
$collection = (new MongoDB\Client)->test->zips;
echo $collection->getCollectionName();

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

zips
  • MongoDB\Collection::getDatabaseName()

  • MongoDB\Collection::getNamespace()

戻る

findOneAndUpdate()