MongoDB\GridFS\Bucket::drop()
정의
오류/예외
MongoDB\ 드라이버\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();