MongoDB\Collection::getNamespace()
定義
MongoDB\Collection::getNamespace()
コレクションの名前空間を返します。 名前空間は、MongoDB 内のインデックスまたはコレクションの標準名です。
function getNamespace(): string
Return Values
このコレクションの名前空間(string)。
例
次の例では、 test
データベース内のzips
コレクションの名前空間が返されます。
$collection = (new MongoDB\Client)->test->zips; echo $collection->getNamespace();
出力は次のようになります。
test.zips