MongoDB\GridFS\Bucket::getFilesCollection()
項目一覧
バージョン 1.2 の新機能.
定義
Return Values
ファイル コレクション用の MongoDB\Collection
オブジェクト。
例
$bucket = (new MongoDB\Client)->test->selectGridFSBucket(); $filesCollection = $bucket->getFilesCollection(); var_dump($filesCollection->getCollectionName());
出力は次のようになります。
string(8) "fs.files"