Docs Menu
Docs Home
/ / /
PHP 라이브러리 매뉴얼
/ /

MongoDB\GridFS\Bucket::rename()

이 페이지의 내용

  • 정의
  • 매개변수
  • 오류/예외
  • 예시
MongoDB\GridFS\Bucket::rename()

_id 기준으로 GridFS 파일 을 선택하고 filename 을(를) 변경합니다.

function rename($id, string $newFilename): void
$id : 혼합
이름을 바꿀 파일 의 _id 입니다.
$newFilename : 문자열
filename 값입니다.

MongoDB\GridFS\Exception\FileNotFoundException 선택 기준에 맞는 파일을 찾을 수 없는 경우.

MongoDB\ 드라이버\Exception\RuntimeException 확장 수준의 다른 오류(예: 연결 오류).

<?php
$bucket = (new MongoDB\Client)->test->selectGridFSBucket();
$stream = fopen('php://temp', 'w+b');
fwrite($stream, "foobar");
rewind($stream);
$id = $bucket->uploadFromStream('a', $stream);
$bucket->rename($id, 'b');
var_dump(stream_get_contents($bucket->openDownloadStreamByName('b')));

이 경우 출력은 다음과 유사합니다:

string(6) "foobar"

돌아가기

RegisterGlobalStreamWrapperAlias()