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();