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

MongoDB\GridFS\Bucket::getChunksCollection()

項目一覧

  • 定義
  • Return Values

バージョン 1.2 の新機能.

MongoDB\GridFS\Bucket::getChunksCollection()

バケットで使用されるチャンク コレクションを返します。

function getChunksCollection(): MongoDB\Collection

チャンク コレクションの MongoDB\Collectionオブジェクト。

<?php
$bucket = (new MongoDB\Client)->test->selectGridFSBucket();
var_dump((string) $bucket->getChunksCollection());

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

string(14) "test.fs.chunks"

戻る

getbucketName()