在此页面上
MongoDB\Collection::getDatabaseName()
返回包含此集合的数据库的名称。
function getDatabaseName(): string
包含此collection的数据库的名称(字符串形式)。
以下返回test数据库中zipscollection的数据库名称。
test
zips
<?php$collection = (new MongoDB\Client)->test->zips;echo $collection->getDatabaseName();
而输出将类似如下所示:
MongoDB\Collection::getCollectionName()
MongoDB\Collection::getNamespace()
后退
getCollectionName()
来年
getManager()