Menu Docs
Página inicial do Docs
/ / /
Manual da Biblioteca PHP
/ /

MongoDB\GridFS\Bucket::getBucketName()

Nesta página

  • Definição
  • Return Values
  • Exemplos
MongoDB\GridFS\Bucket::getBucketName()

Retorna o nome desse bucket.

function getBucketName(): string

O nome deste bucket como uma string.

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

A saída seria então semelhante a:

string(2) "fs"

Voltar

findOne()