MongoDB\GridFS\Bucket::openDownloadStream()
이 페이지의 내용
정의
매개변수
$id
: 혼합- 다운로드할 파일의
_id
입니다.
Return Values
읽기 가능한 스트림 리소스입니다.
오류/예외
MongoDB\GridFS\Exception\FileNotFoundException
선택 기준에 맞는 파일을 찾을 수 없는 경우.
MongoDB\ 드라이버\Exception\RuntimeException 확장 수준의 다른 오류(예: 연결 오류).
예시
$bucket = (new MongoDB\Client)->test->selectGridFSBucket(); $uploadStream = fopen('php://temp', 'w+b'); fwrite($uploadStream, "foobar"); rewind($uploadStream); $id = $bucket->uploadFromStream('filename', $uploadStream); $downloadStream = $bucket->openDownloadStream($id); var_dump(stream_get_contents($downloadStream));
이 경우 출력은 다음과 유사합니다:
string(6) "foobar"