項目一覧
MongoDB\Collection::getDatabaseName()
このコレクションを含むデータベースの名前を返します。
function getDatabaseName(): string
このコレクションを string として含むデータベースの名前。
次の例では、 testデータベース内のzipsコレクションのデータベース名が返されます。
test
zips
<?php$collection = (new MongoDB\Client)->test->zips;echo $collection->getDatabaseName();
出力は次のようになります。
MongoDB\Collection::getCollectionName()
MongoDB\Collection::getNamespace()
戻る
getCollectionName()
次へ
getManager()