For AI agents: a documentation index is available at https://www.mongodb.com/es/docs/llms.txt — markdown versions of all pages are available by appending .md to any URL path.
Make the MongoDB docs better! We value your opinion. Share your feedback for a chance to win $100.
MongoDB Branding Shape
Click here >
Docs Menu

MongoDB\Collection::getDatabaseName()

MongoDB\Collection::getDatabaseName()

Returns the name of the database containing this collection.

function getDatabaseName(): string

The name of the database containing this collection as a string.

The following returns the database name for the zips collection in the test database.

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

The output would then resemble:

test