MongoDB\GridFS\Bucket::drop()
定義
エラーと例外
MongoDB\Driver\Exception\RuntimeException 拡張レベルのその他のエラー(例:)。
例
$database = (new MongoDB\Client)->test; $bucket = $database->selectGridFSBucket(); $stream = fopen('php://temp', 'w+b'); fwrite($stream, "foobar"); rewind($stream); $bucket->uploadFromStream('filename', $stream); $bucket->drop();