Docs Menu
Docs Home
/ / /
PHP ライブラリ マニュアル
/ /

MongoDB\GridFS\Bucket::getFilesCollection()

項目一覧

  • 定義
  • Return Values

バージョン 1.2 の新機能.

MongoDB\GridFS\Bucket::getFilesCollection()

バケットで使用されるファイル コレクションを返します。

function getFilesCollection(): MongoDB\Collection

ファイル コレクション用の MongoDB\Collectionオブジェクト。

<?php
$bucket = (new MongoDB\Client)->test->selectGridFSBucket();
$filesCollection = $bucket->getFilesCollection();
var_dump($filesCollection->getCollectionName());

出力は次のようになります。

string(8) "fs.files"

戻る

getFileIdForStream()