For AI agents: a documentation index is available at https://www.mongodb.com/zh-cn/docs/llms.txt — markdown versions of all pages are available by appending .md to any URL path.
Docs Menu

MongoDB\Collection::getCollectionName()

MongoDB\Collection::getCollectionName()

Returns the name of this collection.

function getCollectionName(): string

The name of this collection as a string.

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

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

The output would then resemble:

zips