정의
오류/예외
확장 수준의 기타 오류(예: 연결 오류)의 경우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();