MongoDB\GridFS\Bucket::getChunksCollection()
On this page
New in version 1.2.
Definition
Return Values
A MongoDB\Collection
object for the chunks collection.
Examples
$bucket = (new MongoDB\Client)->test->selectGridFSBucket(); var_dump((string) $bucket->getChunksCollection());
The output would then resemble:
string(14) "test.fs.chunks"